/* ================= TEXT-TO-SPEECH STYLES - MATCHING HR-FIT THEME ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)), 
                url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1770&q=80') no-repeat center center;
    background-size: cover;
}

/* Container matching your theme */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin-top: 70px; /* Space for back button */
}

/* Back to main site button - matching your buttons */
.back-to-main {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #0054a6;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.back-to-main:hover {
    background: #003166;
    transform: translateX(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.back-to-main i {
    font-size: 0.9em;
}

/* Header matching your theme */
.header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border-radius: 8px 8px 0 0;
    margin-bottom: 30px;
    position: relative;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.header-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #d3d9de;
}

.header h1 i {
    color: #ff7b29;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Main content area */
.main-content {
    display: grid;
    gap: 30px;
    padding: 0 20px 40px;
}

/* Cards matching your theme */
.card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #5b6cff;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Input section */
.input-section {
    margin-bottom: 30px;
}

.input-section label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

#textInput {
    width: 100%;
    min-height: 200px;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.3s ease;
}

#textInput:focus {
    outline: none;
    border-color: #0054a6;
    box-shadow: 0 0 0 3px rgba(0, 84, 166, 0.1);
}

.char-count {
    text-align: right;
    margin-top: 10px;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Controls section */
.controls-section {
    margin-bottom: 30px;
}

.voice-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.control-group label {
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-group label i {
    color: #0054a6;
    font-size: 0.9em;
}

.control-group select {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-group select:focus {
    outline: none;
    border-color: #0054a6;
}

/* Voice select specific styles */
.voice-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230054a6' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.voice-select:focus {
    outline: none;
    border-color: #0054a6;
    box-shadow: 0 0 0 3px rgba(0, 84, 166, 0.1);
}

.voice-select option {
    padding: 10px;
    font-size: 0.95rem;
}

.voice-select optgroup {
    font-weight: 600;
    color: #0054a6;
    font-family: 'Poppins', sans-serif;
    padding: 5px;
}

.voice-select optgroup option {
    font-weight: normal;
    color: #2c3e50;
    padding-left: 20px;
}

.voice-info {
    margin-top: 5px;
    font-size: 0.85rem;
    color: #6c757d;
    min-height: 20px;
}

#voiceStatus {
    display: inline-block;
    padding: 3px 8px;
    background: #f8f9fa;
    border-radius: 4px;
    font-style: italic;
}

/* ================= BUTTON LAYOUT FIXES ================= */

/* Action buttons - in line */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.action-buttons .btn {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

/* Button base styles */
.btn {
    display: inline-flex;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.btn-primary {
    background-color: #0054a6;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background-color: #003166;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover:not(:disabled) {
    background-color: #5a6268;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn-success {
    background-color: #38a169;
    color: white;
}

.btn-success:hover:not(:disabled) {
    background-color: #2d8554;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.95rem;
    min-width: auto;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Progress section */
.progress-section {
    margin: 30px 0;
}

.progress-bar {
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #5b6cff 0%, #2fb8ff 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 5px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    color: #6c757d;
    font-size: 0.9rem;
}

/* ================= FILE UPLOAD STYLES ================= */
.upload-section {
    margin-top: 20px;
    text-align: center;
}

/* Upload Icon */
.upload-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.upload-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5b6cff, #2fb8ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(91, 108, 255, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.upload-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #5b6cff, #2fb8ff, #5b6cff);
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.file-upload-container {
    text-align: center;
    margin: 25px 0;
}

.file-upload {
    display: inline-flex;
    padding: 15px 35px;
    background: linear-gradient(90deg, #5b6cff, #2fb8ff);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(91, 108, 255, 0.3);
    font-family: 'Poppins', sans-serif;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.file-upload:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(91, 108, 255, 0.4);
    background: linear-gradient(90deg, #4a5ae5, #259ed8);
}

.file-upload i {
    font-size: 1.2rem;
}

#fileInput {
    display: none;
}

.file-size-limit {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 15px;
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    max-width: 400px;
    margin: 15px auto;
    border: 1px solid #e9ecef;
    line-height: 1.5;
}

.supported-formats {
    margin: 30px 0;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e9ecef 100%);
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.supported-formats h4 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.supported-formats h4 i {
    color: #0054a6;
}

.format-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.format-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    min-width: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.format-icon:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #0054a6;
}

.format-icon i {
    font-size: 2rem;
    color: #0054a6;
}

.format-icon:nth-child(1) i { 
    color: #e74c3c; /* PDF */
}

.format-icon:nth-child(2) i { 
    color: #2b579a; /* Word */
}

.format-icon:nth-child(3) i { 
    color: #27ae60; /* Text */
}

.format-icon span {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.extraction-options {
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.extraction-options label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #2c3e50;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.extraction-options label:hover {
    background: #f8f9fa;
    padding-left: 15px;
}

.extraction-options label:last-child {
    margin-bottom: 0;
}

.extraction-options input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #0054a6;
    cursor: pointer;
    flex-shrink: 0;
}

.upload-disclaimer {
    margin-top: 35px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 5px solid #38a169;
    font-size: 0.95rem;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
}

.upload-disclaimer i {
    color: #38a169;
    margin-right: 12px;
    font-size: 1.2rem;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(56, 161, 105, 0.3);
}

.upload-disclaimer strong {
    color: #0054a6;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.upload-disclaimer p {
    margin: 0;
    display: flex;
    align-items: center;
}

/* Progress bar for extraction */
.extraction-progress {
    margin: 20px auto;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    height: 8px;
    width: 100%;
    max-width: 500px;
    display: none;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.extraction-progress.active {
    display: block;
}

.extraction-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #5b6cff, #2fb8ff, #5b6cff);
    background-size: 200% 100%;
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 10px;
    animation: progressShine 2s infinite linear;
}

@keyframes progressShine {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Preview section */
.preview-section h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.preview-section h3 i {
    color: #ff7b29;
}

.preview-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
    min-height: 100px;
    line-height: 1.6;
    overflow-y: auto;
    max-height: 300px;
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Preview Controls - in line */
.preview-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

.preview-controls .btn-sm {
    flex: 1;
    min-width: 140px;
    max-width: 180px;
}

/* Quick Actions - in line */
.quick-actions {
    margin-top: 20px;
}

.quick-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.quick-action-buttons .btn {
    flex: 1;
    min-width: 180px;
    max-width: 250px;
    padding: 14px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

/* Tips section */
.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #2c3e50;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list i {
    color: #38a169;
    font-size: 1.2rem;
    min-width: 24px;
}

/* Footer matching your theme */
.footer {
    text-align: center;
    padding: 30px 20px;
    color: #6c757d;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
    margin-top: 40px;
    border-top: 1px solid #e9ecef;
}

.footer p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #6c757d;
}

/* Message styles */
.message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.message-success {
    background: #38a169;
    color: white;
    border-left: 4px solid #2d8554;
}

.message-error {
    background: #e74c3c;
    color: white;
    border-left: 4px solid #c0392b;
}

.message-info {
    background: #3498db;
    color: white;
    border-left: 4px solid #2980b9;
}

.message-warning {
    background: #f39c12;
    color: white;
    border-left: 4px solid #e67e22;
}

.message-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: 10px;
    padding: 0;
    font-size: 1rem;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 84, 166, 0.1);
    border-top: 4px solid #0054a6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 25px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loadingText {
    font-size: 1.2rem;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

/* Reload voices button */
.reload-voices-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0054a6;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 5px;
}

.reload-voices-btn:hover {
    background: #003166;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 40px 20px 30px;
    }
    
    .header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .header h1 i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .action-buttons .btn,
    .quick-action-buttons .btn,
    .preview-controls .btn-sm {
        min-width: 160px;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        margin-top: 80px; /* More space for back button */
    }
    
    .back-to-main {
        top: 10px;
        left: 10px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .voice-controls {
        grid-template-columns: 1fr;
    }
    
    .action-buttons,
    .quick-action-buttons,
    .preview-controls {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .action-buttons .btn,
    .quick-action-buttons .btn {
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
        margin-bottom: 10px;
    }
    
    .preview-controls .btn-sm {
        min-width: calc(33.333% - 10px);
        max-width: calc(33.333% - 10px);
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .main-content {
        padding: 0 10px 30px;
    }
    
    .card {
        padding: 20px;
    }
    
    .header {
        padding: 30px 15px 25px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .format-icons {
        gap: 15px;
    }
    
    .format-icon {
        min-width: 85px;
        padding: 12px 15px;
    }
    
    .format-icon i {
        font-size: 1.8rem;
    }
    
    .format-icon span {
        font-size: 0.85rem;
    }
    
    .extraction-options label {
        font-size: 0.95rem;
    }
    
    .file-info {
        padding: 20px 15px;
    }
    
    .reload-voices-btn {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .header h1 {
        font-size: 1.6rem;
    }
    
    #textInput {
        min-height: 150px;
        padding: 15px;
    }
    
    .action-buttons,
    .quick-action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn,
    .quick-action-buttons .btn {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
    
    .preview-controls {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .preview-controls .btn-sm {
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .supported-formats {
        padding: 15px;
    }
    
    .format-icons {
        gap: 10px;
    }
    
    .format-icon {
        min-width: 70px;
        padding: 10px;
    }
    
    .format-icon i {
        font-size: 1.5rem;
    }
    
    .format-icon span {
        font-size: 0.8rem;
    }
    
    .extraction-options label {
        font-size: 0.9rem;
        padding: 8px;
    }
    
    .upload-disclaimer {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .upload-disclaimer i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .file-size-limit {
        font-size: 0.8rem;
        padding: 10px;
    }
    
    .upload-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .upload-icon {
        font-size: 1.5rem;
    }
}