/* Bank Theme Colors */
:root {
    --bank-primary: #8B0000; /* Dark Red */
    --bank-secondary: #D4AF37; /* Gold */
    --bank-light: #FFF8E1;
    --bank-dark: #5A0000;
    --bank-accent: #C0A062;

                --primary-blue: #1a4f8c;
            --primary-blue-dark: #0d3a6b;
            --primary-blue-light: #2c6cb0;
            --accent-gold: #d4af37;
            --accent-gold-light: #e6c862;
            --neutral-dark: #1e293b;
            --neutral-gray: #64748b;
            --neutral-light: #f8fafc;
            --neutral-white: #ffffff;
            --success-green: #059669;
            --warning-orange: #ea580c;
            --error-red: #dc2626;
            --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
            --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
            --border-radius: 8px;
            --transition: all 0.3s ease;
}
            * {
            margin: 0;
            padding: 0;
        }



        /* Header Styles */
        .bank-header {
            background: linear-gradient(135deg, var(--bank-primary) 0%, var(--bank-dark) 100%);
            color: var(--neutral-white);
            padding: 1rem 0;
            box-shadow: var(--shadow-medium);
            position: sticky;
            top: 0;
            z-index: 1000;
        }


        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.bank-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}


        .logo-img {
            height: 45px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
         color: white;

        }

.bank-name {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    color: var(--neutral-white); /* Using your existing variable */
}
        .division-name {
            font-weight: 400;
            font-size: 0.875rem;
            opacity: 0.9;
        }

        /* Ensure inheritance */
.bank-name, .division-name {
    color: inherit;
}

.bank-logo .bank-name {
    color: white !important;
}

/* Navigation Styles */
.bank-nav {
    background-color: var(--bank-dark);
    
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    color: white;
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--bank-secondary);
}

.nav-menu li.active a {
    border-bottom-color: var(--bank-secondary);
    color: var(--bank-secondary);
    font-weight: 600;
}

.nav-menu li a i {
    margin-right: 8px;
    color: var(--bank-secondary);
}

/* Auth Controls */
.auth-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-menu, .non-auth-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.auth-menu li a, .non-auth-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.auth-menu li a:hover, .non-auth-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.auth-menu li a i {
    margin-right: 5px;
}

.btn-logout {
    background-color: var(--bank-secondary);
    color: var(--bank-dark) !important;
    font-weight: 600;
    padding: 0.5rem 1.25rem !important;
}

.btn-logout:hover {
    background-color: #E6C200 !important;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.welcome-msg {
    font-size: 0.875rem;
    color: var(--bank-light);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bank-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bank-dark);
    font-weight: bold;
}

/* Footer Styles */
.bank-footer {
    background: linear-gradient(to right, var(--bank-dark), var(--bank-primary));
    color: white;
    padding: 2.5rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left, .footer-right {
    flex: 1;
    min-width: 300px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

.footer-links li a {
    color: var(--bank-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-links li a:hover {
    color: var(--bank-secondary);
    text-decoration: underline;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.security-badge i {
    color: var(--bank-secondary);
}

.ssl-info img {
    height: 40px;
}

.copyright {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    width: 100%;
}
/* Admin Panel Styles */
.admin-panel {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.admin-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.admin-panel__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
}

.admin-panel__icon {
    margin-right: 0.75rem;
    color: #64748b;
}

.admin-panel__status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-draft { background: #e2e8f0; color: #475569; }
.status-submitted { background: #bfdbfe; color: #1e40af; }
.status-under_review { background: #bae6fd; color: #0369a1; }
.status-approved { background: #a7f3d0; color: #065f46; }
.status-rejected { background: #fecaca; color: #b91c1c; }
.status-disbursed { background: #c7d2fe; color: #4338ca; }
.status-action_required { background: #fde68a; color: #92400e; }

.admin-panel__content {
    padding: 1.5rem;
}

.admin-panel__footer {
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    font-size: 0.875rem;
    color: #64748b;
}

/* Admin Card Styles */
.admin-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.admin-card--danger {
    border-color: #fee2e2;
}

.admin-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.admin-card--danger .admin-card__header {
    border-bottom-color: #fee2e2;
}

.admin-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.admin-card__icon {
    color: #64748b;
    font-size: 1.1rem;
}

.admin-card--danger .admin-card__icon {
    color: #ef4444;
}

/* Form Styles */
.admin-form {
    padding: 1.5rem;
}

.admin-form__group {
    margin-bottom: 1.25rem;
}

.admin-form__group--inline {
    display: flex;
    align-items: center;
}

.admin-form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.5rem;
}

.admin-form__select-wrapper {
    position: relative;
}

.admin-form__select {
    appearance: none;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background-color: #fff;
    font-size: 0.875rem;
    color: #334155;
    transition: border-color 0.2s;
}

.admin-form__select:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.admin-form__select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #94a3b8;
    font-size: 0.75rem;
}

.admin-form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background-color: #fff;
    font-size: 0.875rem;
    color: #334155;
    min-height: 100px;
    resize: vertical;
    transition: border-color 0.2s;
}

.admin-form__textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.admin-form__checkbox {
    width: 1rem;
    height: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    margin-right: 0.5rem;
    appearance: none;
    position: relative;
    cursor: pointer;
}

.admin-form__checkbox:checked {
    background-color: #2563eb;
    border-color: #2563eb;
}

.admin-form__checkbox:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    color: white;
    font-size: 0.6rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.admin-form__checkbox-label {
    font-size: 0.875rem;
    color: #334155;
    cursor: pointer;
}

/* Button Styles */
.admin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.admin-button__icon {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.admin-button--primary {
    background-color: #2563eb;
    color: white;
}

.admin-button--primary:hover {
    background-color: #1d4ed8;
}

.admin-button--secondary {
    background-color: #e2e8f0;
    color: #334155;
}

.admin-button--secondary:hover {
    background-color: #cbd5e1;
}

.admin-button--danger {
    background-color: #ef4444;
    color: white;
}

.admin-button--danger:hover {
    background-color: #dc2626;
}

/* Comments Styles */
.comments-list {
    margin-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.comment {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #e2e8f0;
}

.comment--visible {
    border-left-color: #2563eb;
    background: #eff6ff;
}

.comment__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.comment__author {
    display: flex;
    align-items: center;
}

.comment__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.comment__name {
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0 0 0.25rem 0;
    color: #1e293b;
}

.comment__date {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

.comment__visibility-badge {
    font-size: 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

.comment__visibility-badge i {
    margin-right: 0.25rem;
    font-size: 0.6rem;
}

.comment__content {
    font-size: 0.875rem;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.comment__actions {
    text-align: right;
}

.comment__delete {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.comment__delete:hover {
    background: rgba(239, 68, 68, 0.1);
}

.comment__delete i {
    margin-right: 0.25rem;
}

.comments-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: #94a3b8;
}

.comments-empty__icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.comments-empty p {
    margin: 0;
    font-size: 0.875rem;
}

/* Danger Zone Styles */
.danger-actions {
    padding: 1.5rem;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .admin-panel__header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-panel__status-badge {
        margin-top: 0.5rem;
    }
    
    .comment__header {
        flex-direction: column;
    }
    
    .comment__visibility-badge {
        margin-top: 0.5rem;
        align-self: flex-start;
    }
}

.action-required-alert {
    display: flex;
    align-items: center;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.action-required-alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #f59e0b;
}

.action-required-alert__icon {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-right: 1rem;
    flex-shrink: 0;
}

.action-required-alert__content {
    flex-grow: 1;
    margin-right: 1rem;
}

.action-required-alert__title {
    font-size: 1rem;
    font-weight: 600;
    color: #92400e;
    margin: 0 0 0.25rem 0;
}

.action-required-alert__message {
    font-size: 0.875rem;
    color: #92400e;
    margin: 0;
}

.action-required-alert__message strong {
    font-weight: 600;
}

.action-required-alert__toggle {
    background: none;
    border: none;
    color: #92400e;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-left: 0.25rem;
    font-size: 0.875rem;
}

.action-required-alert__toggle i {
    margin-left: 0.25rem;
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.action-required-alert__comments {
    margin-top: 1rem;
    display: none;
}

.action-required-alert__comments--visible {
    display: block;
}

.customer-comment {
    background: rgba(254, 243, 199, 0.5);
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.customer-comment:last-child {
    margin-bottom: 0;
}

.customer-comment__meta {
    display: flex;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    color: #92400e;
}

.customer-comment__author {
    font-weight: 600;
    margin-right: 0.5rem;
}

.customer-comment__text {
    font-size: 0.875rem;
    color: #92400e;
    margin: 0;
}

.action-required-alert__button {
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.action-required-alert__button:hover {
    background: #d97706;
}

@media (max-width: 768px) {
    .action-required-alert {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .action-required-alert__content {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .action-required-alert__button {
        align-self: flex-end;
    }
}


/* Admin Panel Toggle Styles */
.admin-panel__header {
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.admin-panel__header:hover {
    background-color: #f1f5f9;
}

.admin-panel__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-panel__toggle-icon {
    transition: transform 0.3s ease;
    color: #64748b;
    font-size: 0.9rem;
}

.admin-panel__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.admin-panel__footer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.admin-panel--expanded .admin-panel__content,
.admin-panel--expanded .admin-panel__footer {
    max-height: 5000px; /* Adjust based on your content */
}

.admin-panel--expanded .admin-panel__toggle-icon {
    transform: rotate(180deg);
}

/* Existing styles remain the same */
.admin-panel {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.admin-panel__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
}

.admin-panel__icon {
    margin-right: 0.75rem;
    color: #64748b;
}

.admin-panel__status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-draft { background: #e2e8f0; color: #475569; }
.status-submitted { background: #bfdbfe; color: #1e40af; }
.status-under_review { background: #bae6fd; color: #0369a1; }
.status-approved { background: #a7f3d0; color: #065f46; }
.status-rejected { background: #fecaca; color: #b91c1c; }
.status-disbursed { background: #c7d2fe; color: #4338ca; }


/* Add to your stylesheet */
.upload-alert {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.global-upload-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
    background: transparent;
    border: 0;
    cursor: pointer;
}


@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.upload-alert {
    transition: all 0.3s ease;
}


.notification-item {
    animation: slideIn 0.3s ease-out;
    margin-bottom: 10px;
    min-width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.active-qr-code {
    position: relative;
}
.qr-status-indicator {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 3px;
    border-radius: 4px;
    font-size: 12px;
}
.notification-item {
    margin-bottom: 10px;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}



/* Principal selection styling */
.principal-option {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.principal-option:hover {
    background-color: #f8f9fa;
}

.principal-option.verified {
    border-left-color: #28a745;
    background-color: #f8f9fa;
}

.principal-option.verified .principal-info {
    opacity: 0.7;
}

/* Verification completed screen */
.verification-completed {
    text-align: center;
    padding: 2rem;
}

.verification-completed .icon-container {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.compliance-message {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    color: #495057;
}

.contact-support {
    color: #6c757d;
    font-size: 0.9rem;
}

/* QR code styling */
.qr-code-placeholder {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.qr-code-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #dee2e6;
}





/* resources/css/banking-credit-report.css */
.bank-credit-report-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.report-header h2 {
    margin: 0;
    color: #2a3f54;
    font-size: 24px;
}

.customer-info {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.info-item {
    display: flex;
    gap: 5px;
    font-size: 14px;
}

.info-item span {
    color: #7f8c8d;
}

.btn-refresh {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn-refresh:hover {
    background: #2980b9;
}

.score-summary {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: center;
}

.score-display {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-value {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.score-band {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.score-explanation {
    flex: 1;
}

.score-explanation h4 {
    margin-top: 0;
    color: #2a3f54;
    font-size: 18px;
}

.score-explanation p {
    color: #34495e;
    line-height: 1.6;
}

.report-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-card {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 20px;
    border-top: 3px solid #2a3f54;
}

.detail-card h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2a3f54;
    display: flex;
    align-items: center;
    gap: 10px;
}

.factors-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.factor-group h5 {
    margin-bottom: 10px;
    font-size: 15px;
}

.factor-group.positive h5 {
    color: #27ae60;
}

.factor-group.negative h5 {
    color: #e74c3c;
}

.factor-group ul {
    margin: 0;
    padding-left: 20px;
}

.factor-group li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.factor-group.positive li {
    color: #27ae60;
}

.factor-group.negative li {
    color: #e74c3c;
}

.recommendations-content {
    line-height: 1.6;
    color: #34495e;
}

.no-recommendations {
    text-align: center;
    color: #7f8c8d;
    padding: 20px 0;
}

.no-recommendations i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #2ecc71;
}

.report-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.disclaimer h5 {
    color: #e74c3c;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.disclaimer p {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.5;
}

/* Add to your existing CSS */
/* Add to your existing CSS */
/* Upload Progress Styles */
/* Progress bar styles */
#upload-progress {
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 15px;
    display: none;
}

.progress-bar-upload {
    transition: width 0.3s ease;
    background-color: #007bff;
}

/* Error message styles */
#upload-errors {
    padding: 12px;
    border-radius: 4px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    margin-top: 15px;
    display: none;
}

#upload-errors ul {
    margin-bottom: 0;
    padding-left: 20px;
}

/* Button loading state */
.btn[disabled] {
    pointer-events: none;
    opacity: 0.8;
}

.spinner-border {
    vertical-align: middle;
}