

.converter-container {
    padding: 30px;
    margin: 1px auto;
    max-width: 1000px;
}

.converter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.time-input-group {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
}

select, input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}

select:focus, input:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.result-panel {
    background: #ebf8ff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.result-time {
    font-size: 24px;
    font-weight: bold;
    color: #2b6cb0;
    margin: 10px 0;
}

.result-date {
    color: #4a5568;
    font-size: 16px;
}

.timezone-info {
    display: flex;
    justify-content: space-between;
    background: #f7fafc;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
}

.timezone-detail {
    text-align: center;
}

.timezone-label {
    font-size: 14px;
    color: #718096;
}

.timezone-value {
    font-weight: 600;
    color: #2d3748;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .converter-grid {
        grid-template-columns: 1fr;
    }
    
    .converter-container {
        max-width:fit-content;
        padding: 0px;
    }
}