/* 时间转换工具样式 */
.page-container {
    display: flex;
    gap: 20px;
    max-width: 1800px;
    margin: 0 auto;
}

.left-panel, .right-panel {
    flex: 1;
    min-width: 400px;
}

.tool-container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

input[type="text"],
input[type="number"],
input[type="datetime-local"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

input:focus {
    outline: none;
    border-color: #6a11cb;
}

.result-group {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.result-group h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    color: #666;
    font-size: 14px;
}

.result-value {
    font-family: monospace;
    color: #6a11cb;
    font-size: 14px;
}

.result-value-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-message {
    color: #f44336;
    margin-top: 5px;
    font-size: 12px;
    display: none;
}

.current-time {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-family: monospace;
}

@media (max-width: 1200px) {
    .page-container {
        flex-direction: column;
    }
    
    .left-panel, .right-panel {
        min-width: auto;
    }
} 