/* Converter Page Specific Styles */

.converter-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .converter-container {
        grid-template-columns: 1fr 1fr;
    }
}

.converter-column-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Add a title bar */
.page-title-bar {
    background: linear-gradient(45deg, #007bff, #0056b3);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: white;
}

.page-title-bar h2 {
    color: white;
    margin: 0;
    font-size: 2rem;
    border-bottom: none;
}

/* Vivid styling for upload and history sections */
.file-upload-section,
.conversion-history-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.file-upload-section:hover,
.conversion-history-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.file-upload-section h2,
.conversion-history-section h2 {
    font-size: 1.6rem;
    color: #0056b3;
}

#historyList {
    max-height: 500px; /* Give history more space */
}
