/* RhinoMatch Frontend Styles */

:root {
    --primary-blue: #0A3D62;
    --accent-teal: #1B998B;
    --neutral-dark: #2C3E50;
    --neutral-medium: #6B7C93;
    --neutral-light: #E8EDF2;
    --background: #F8FAFB;
    --white: #FFFFFF;
    --ai-accent: #4A90E2;
    --success: #27AE60;
    --warning: #E67E22;
}

.rhinomatch-consultation-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Header */
.rhinomatch-wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--neutral-light);
}

.rhinomatch-logo {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-blue);
}

.rhinomatch-progress-bar {
    width: 300px;
    height: 6px;
    background: var(--neutral-light);
    border-radius: 3px;
    overflow: hidden;
}

.rhinomatch-progress-fill {
    height: 100%;
    background: var(--accent-teal);
    transition: width 0.5s ease;
    width: 20%;
}

/* Steps */
.rhinomatch-wizard-container {
    position: relative;
}

.rhinomatch-step {
    display: none;
}

.rhinomatch-step.rhinomatch-active {
    display: block;
    animation: rhinomatchFadeIn 0.4s ease;
}

@keyframes rhinomatchFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rhinomatch-step-content {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.rhinomatch-step-header {
    text-align: center;
    margin-bottom: 48px;
}

.rhinomatch-step-header h1 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.rhinomatch-step-description {
    font-size: 16px;
    color: var(--neutral-medium);
}

/* Privacy Notice */
.rhinomatch-privacy-notice {
    background: rgba(27, 153, 139, 0.05);
    border: 1px solid rgba(27, 153, 139, 0.2);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.rhinomatch-privacy-icon {
    font-size: 32px;
}

.rhinomatch-privacy-notice strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.rhinomatch-privacy-notice p {
    font-size: 14px;
    color: var(--neutral-medium);
    line-height: 1.6;
    margin: 0;
}

/* Upload Grid */
.rhinomatch-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.rhinomatch-upload-card {
    text-align: center;
}

.rhinomatch-upload-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.rhinomatch-upload-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--neutral-dark);
}

.rhinomatch-upload-card p {
    font-size: 14px;
    color: var(--neutral-medium);
    margin-bottom: 16px;
}

.rhinomatch-optional {
    font-size: 12px;
    color: var(--neutral-medium);
    font-weight: 400;
}

.rhinomatch-upload-zone {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--background);
    border: 2px dashed var(--neutral-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.rhinomatch-upload-zone:hover {
    border-color: var(--accent-teal);
    background: var(--white);
}

.rhinomatch-upload-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.rhinomatch-upload-plus {
    font-size: 48px;
    color: var(--neutral-medium);
    margin-bottom: 12px;
}

/* Analysis Container */
.rhinomatch-analysis-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.rhinomatch-analysis-visual {
    background: var(--background);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.rhinomatch-placeholder-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--background) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    margin-bottom: 16px;
}

.rhinomatch-analysis-visual h3 {
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.rhinomatch-analysis-visual p {
    color: var(--neutral-medium);
}

.rhinomatch-analysis-progress {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
}

.rhinomatch-progress-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--neutral-light);
}

.rhinomatch-progress-item:last-child {
    border-bottom: none;
}

.rhinomatch-progress-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.rhinomatch-progress-icon.rhinomatch-analyzing {
    animation: rhinomatchPulse 1.5s ease-in-out infinite;
    background: rgba(27, 153, 139, 0.1);
}

.rhinomatch-progress-icon.rhinomatch-complete {
    background: var(--accent-teal);
    color: white;
}

@keyframes rhinomatchPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.rhinomatch-progress-info {
    flex: 1;
}

.rhinomatch-progress-info h3 {
    font-size: 16px;
    color: var(--neutral-dark);
    margin-bottom: 8px;
}

.rhinomatch-progress-bar-container {
    width: 100%;
    height: 4px;
    background: var(--neutral-light);
    border-radius: 2px;
    overflow: hidden;
}

.rhinomatch-progress-bar-fill {
    height: 100%;
    background: var(--accent-teal);
    width: 0%;
    transition: width 1s ease;
}

/* Results Grid */
.rhinomatch-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.rhinomatch-result-card {
    background: var(--background);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.rhinomatch-result-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.rhinomatch-result-card h3 {
    font-size: 20px;
    color: var(--neutral-dark);
    margin-bottom: 12px;
}

.rhinomatch-result-card p {
    font-size: 14px;
    color: var(--neutral-medium);
    line-height: 1.6;
}

.rhinomatch-recommendation-box {
    background: rgba(27, 153, 139, 0.05);
    border-left: 4px solid var(--accent-teal);
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
}

.rhinomatch-recommendation-box h3 {
    color: var(--accent-teal);
    margin-bottom: 16px;
    font-size: 20px;
}

.rhinomatch-recommendation-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rhinomatch-recommendation-box li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--neutral-dark);
}

.rhinomatch-recommendation-box li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
}

/* Form Groups */
.rhinomatch-form-group {
    margin-bottom: 24px;
}

.rhinomatch-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-dark);
    margin-bottom: 8px;
}

.rhinomatch-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--neutral-light);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.rhinomatch-input:focus {
    outline: none;
    border-color: var(--accent-teal);
}

/* Buttons */
.rhinomatch-button-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.rhinomatch-btn {
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.rhinomatch-btn-primary {
    background: var(--accent-teal);
    color: white;
}

.rhinomatch-btn-primary:hover {
    background: #178c7e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 153, 139, 0.3);
}

.rhinomatch-btn-primary:disabled {
    background: var(--neutral-light);
    color: var(--neutral-medium);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.rhinomatch-btn-secondary {
    background: var(--white);
    color: var(--neutral-dark);
    border: 2px solid var(--neutral-light);
}

.rhinomatch-btn-secondary:hover {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
}

.rhinomatch-btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Progress Steps Footer */
.rhinomatch-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--neutral-light);
}

.rhinomatch-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.rhinomatch-progress-step.rhinomatch-active {
    opacity: 1;
}

.rhinomatch-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--neutral-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--neutral-medium);
    transition: all 0.3s ease;
}

.rhinomatch-progress-step.rhinomatch-active .rhinomatch-step-number {
    background: var(--accent-teal);
    color: white;
}

.rhinomatch-progress-step span {
    font-size: 13px;
    color: var(--neutral-medium);
}

/* Loading Overlay */
.rhinomatch-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: white;
}

.rhinomatch-loading-spinner {
    border: 6px solid rgba(255,255,255,0.2);
    border-top: 6px solid var(--accent-teal);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: rhinomatchSpin 1s linear infinite;
    margin-bottom: 30px;
}

@keyframes rhinomatchSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.rhinomatch-loading-overlay p {
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.rhinomatch-loading-time {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 10px;
}

.rhinomatch-loading-progress {
    width: 300px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.rhinomatch-loading-progress-bar {
    height: 100%;
    background: var(--accent-teal);
    width: 0%;
    transition: width 0.5s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rhinomatch-consultation-wrapper {
        padding: 20px;
    }

    .rhinomatch-step-content {
        padding: 32px 24px;
    }

    .rhinomatch-wizard-header {
        flex-direction: column;
        gap: 20px;
    }

    .rhinomatch-progress-bar {
        width: 100%;
    }

    .rhinomatch-analysis-container {
        grid-template-columns: 1fr;
    }

    .rhinomatch-upload-grid {
        grid-template-columns: 1fr;
    }

    .rhinomatch-results-grid {
        grid-template-columns: 1fr;
    }

    .rhinomatch-progress-steps {
        flex-wrap: wrap;
        gap: 16px;
    }

    .rhinomatch-button-group {
        flex-direction: column;
    }

    .rhinomatch-btn {
        width: 100%;
    }

    .rhinomatch-step-header h1 {
        font-size: 28px;
    }
}

/* Checkbox Grid */
.rhinomatch-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.rhinomatch-checkbox-card {
    background: var(--background);
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.rhinomatch-checkbox-card:hover {
    border-color: var(--accent-teal);
    background: var(--white);
}

.rhinomatch-checkbox-card.checked {
    border-color: var(--accent-teal);
    background: rgba(27, 153, 139, 0.05);
}

.rhinomatch-checkbox-card input {
    position: absolute;
    opacity: 0;
}

.rhinomatch-checkbox-card label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.rhinomatch-checkbox-icon {
    width: 24px;
    height: 24px;
    border: 2px solid var(--neutral-medium);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: transparent;
}

.rhinomatch-checkbox-card.checked .rhinomatch-checkbox-icon {
    background: var(--accent-teal);
    border-color: var(--accent-teal);
    color: white;
}

.rhinomatch-checkbox-content h3 {
    font-size: 16px;
    color: var(--neutral-dark);
    margin-bottom: 4px;
}

.rhinomatch-checkbox-content p {
    font-size: 13px;
    color: var(--neutral-medium);
    margin: 0;
}

/* Radio Grid */
.rhinomatch-radio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.rhinomatch-radio-card {
    background: var(--background);
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.rhinomatch-radio-card:hover {
    border-color: var(--accent-teal);
    background: var(--white);
}

.rhinomatch-radio-card.checked {
    border-color: var(--accent-teal);
    background: rgba(27, 153, 139, 0.05);
}

.rhinomatch-radio-card input {
    position: absolute;
    opacity: 0;
}

.rhinomatch-radio-card label {
    cursor: pointer;
    display: block;
}

.rhinomatch-radio-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.rhinomatch-radio-card h3 {
    font-size: 16px;
    color: var(--neutral-dark);
    margin-bottom: 4px;
}

.rhinomatch-radio-card p {
    font-size: 13px;
    color: var(--neutral-medium);
    margin: 0;
}

/* Budget Cards */
.rhinomatch-budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.rhinomatch-budget-card {
    background: var(--background);
    border: 2px solid var(--neutral-light);
    border-radius: 16px;
    padding: 32px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.rhinomatch-budget-card:hover {
    border-color: var(--accent-teal);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.rhinomatch-budget-card.checked {
    border-color: var(--accent-teal);
    background: rgba(27, 153, 139, 0.05);
    box-shadow: 0 4px 12px rgba(27, 153, 139, 0.15);
}

.rhinomatch-budget-card input {
    position: absolute;
    opacity: 0;
}

.rhinomatch-budget-card label {
    cursor: pointer;
    display: block;
}

.rhinomatch-budget-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.rhinomatch-budget-range {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.rhinomatch-budget-description {
    font-size: 14px;
    color: var(--neutral-medium);
    line-height: 1.5;
    margin: 0;
}

.rhinomatch-budget-note {
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.rhinomatch-budget-note-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.rhinomatch-budget-note p {
    font-size: 14px;
    color: var(--neutral-medium);
    line-height: 1.6;
    margin: 0;
}

/* Report Header */
.rhinomatch-report-header {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d5a8f 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    margin: -48px -48px 40px -48px;
}

.rhinomatch-report-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.rhinomatch-report-header p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

/* Doctor Match Cards */
.rhinomatch-doctor-match-card {
    background: var(--background);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    position: relative;
}

.rhinomatch-match-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-teal);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.rhinomatch-doctor-profile {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.rhinomatch-doctor-photo {
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.rhinomatch-doctor-info h2 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.rhinomatch-doctor-credentials {
    font-size: 14px;
    color: var(--neutral-medium);
    margin-bottom: 8px;
}

.rhinomatch-doctor-location {
    font-size: 14px;
    color: var(--neutral-medium);
    margin-bottom: 16px;
}

.rhinomatch-doctor-stats {
    display: flex;
    gap: 24px;
}

.rhinomatch-stat-item {
    text-align: center;
}

.rhinomatch-stat-number {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-teal);
    margin-bottom: 4px;
}

.rhinomatch-stat-label {
    font-size: 12px;
    color: var(--neutral-medium);
}

.rhinomatch-doctor-specialties {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.rhinomatch-doctor-specialties h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.rhinomatch-doctor-specialties ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rhinomatch-doctor-specialties li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--neutral-dark);
}

.rhinomatch-doctor-specialties li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
}

.rhinomatch-doctor-actions {
    display: flex;
    gap: 12px;
}

.rhinomatch-doctor-actions .rhinomatch-btn {
    flex: 1;
}

.rhinomatch-final-cta {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    margin-top: 40px;
}

.rhinomatch-final-cta h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.rhinomatch-final-cta p {
    font-size: 16px;
    color: var(--neutral-medium);
    margin-bottom: 32px;
}

.rhinomatch-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .rhinomatch-doctor-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rhinomatch-doctor-photo {
        margin: 0 auto;
    }

    .rhinomatch-doctor-stats {
        justify-content: center;
    }

    .rhinomatch-doctor-actions {
        flex-direction: column;
    }

    .rhinomatch-budget-grid,
    .rhinomatch-checkbox-grid,
    .rhinomatch-radio-grid {
        grid-template-columns: 1fr;
    }
}

/* Phone Input with Country Code */
.rhinomatch-phone-input {
    display: flex;
    gap: 12px;
}

.rhinomatch-country-code {
    width: 120px;
    padding: 12px 16px;
    border: 2px solid var(--neutral-light);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.rhinomatch-country-code:focus {
    outline: none;
    border-color: var(--accent-teal);
}

.rhinomatch-phone-number {
    flex: 1;
}

/* Overall Progress Percentage Display */
.rhinomatch-overall-progress {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(10, 61, 98, 0.2);
    position: relative;
    overflow: hidden;
}

.rhinomatch-overall-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.rhinomatch-overall-percentage {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 20px;
}

.rhinomatch-percentage-number {
    font-size: 96px;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
    letter-spacing: -4px;
}

.rhinomatch-percentage-symbol {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.rhinomatch-overall-status {
    font-size: 20px;
    color: white;
    font-weight: 600;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.rhinomatch-overall-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rhinomatch-overall-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-teal) 0%, #2ECC71 100%);
    border-radius: 20px;
    transition: width 0.3s ease;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.4);
    position: relative;
}

.rhinomatch-overall-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Mobile adjustments for overall progress */
@media (max-width: 768px) {
    .rhinomatch-overall-progress {
        padding: 30px 20px;
    }
    
    .rhinomatch-percentage-number {
        font-size: 72px;
        letter-spacing: -2px;
    }
    
    .rhinomatch-percentage-symbol {
        font-size: 36px;
    }
    
    .rhinomatch-overall-status {
        font-size: 16px;
    }
}
