.converter-section {
    margin: 30px 0;
}

.converter-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.converter-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.current-time {
    font-size: 1.2rem;
    margin-top: 10px;
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 4px;
    text-align: center;
}

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

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
}

.result {
    margin-top: 15px;
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.8rem;
}

.copy-btn:hover {
    background-color: #5a6268;
}

.info-section {
    margin-top: 40px;
}

.info-section h2 {
    margin-bottom: 20px;
}

.info-section h3 {
    margin: 25px 0 15px;
}

.info-section ul {
    padding-left: 20px;
}

.info-section li {
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .converter-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .converter-box {
        flex: 1 1 300px;
    }
}
