/* MySimpleReport Custom Styles */

/* ============================================
   Brand Colors & Variables
   ============================================ */
:root {
    --primary: #183E64;
    /* Dark Blue */
    --secondary: #CD9BBF;
    /* Rose/Pink */
    --accent: #6CA3D8;
    /* Light Blue */
    --primary-dark: #2a5280;
    --secondary-dark: #b885a8;
    --accent-dark: #5891c7;
}

/* ============================================
   Google Fonts - Poppins
   ============================================ */

body {
    font-family: Poppins;
}

/* ============================================
   Background Gradients
   ============================================ */
.bg-gradient-custom {
    background: linear-gradient(180deg, #E8F4FF 0%, #F5E8F3 50%, #E0EFFF 100%);
    min-height: 100vh;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

/* ============================================
   Custom Buttons
   ============================================ */
.btn-primary-custom {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border: none;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-secondary-custom {
    background: white;
    border: 2px solid #e5e7eb;
    color: var(--primary);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: var(--primary);
}

/* ============================================
   Cards & Containers
   ============================================ */
.card-custom {
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    background: white;
}

.card-custom:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-feature {
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    background: white;
    transition: all 0.3s ease;
}

.card-feature:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-feature.border-accent:hover {
    border-color: var(--accent);
}

.hover-border-blue:hover {
    border-color: var(--primary);
}

.hover-border-pink:hover {
    border-color: var(--secondary);
}

/* ============================================
   Stat Cards
   ============================================ */
.stat-card {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(24, 62, 100, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -4rem;
    right: -4rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    opacity: 0.05;
}

.stat-card.stat-primary::before {
    background: var(--primary);
}

.stat-card.stat-accent::before {
    background: var(--accent);
}

.stat-card.stat-secondary::before {
    background: var(--secondary);
}

.stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6A7282;
    font-weight: 500;
}

.dashboard-stat-1,
.dashboard-stat-4 {
    background-color: #183E641A;
}

.dashboard-stat-2 {
    background-color: #6CA3D833;
}

.dashboard-stat-3 {
    background-color: #CD9BBF33;
}

/* ============================================
   Report Cards
   ============================================ */
.report-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.report-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.375rem;
    border-radius: 1.5rem 1.5rem 0 0;
}

.report-card.status-complete::before {
    background: var(--accent);
}

.report-card.status-processing::before {
    background: var(--secondary);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.report-card .arrow-icon {
    opacity: 0;
    transform: translateX(1rem);
    transition: all 0.3s ease;
}

.report-card:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

.single-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0.375rem;
    height: 100%;
    border-radius: 1.5rem 0 0 1.5rem !important;
}

/* ============================================
   Status Badges
   ============================================ */
.badge-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-complete {
    border: 1px solid rgba(108, 163, 216, 0.30);
    background: rgba(108, 163, 216, 0.10);
    color: var(--accent);
}

.badge-processing {
    background: rgba(205, 155, 191, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(205, 155, 191, 0.3);
}

.badge-normal {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-high {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-low {
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* ============================================
   Forms
   ============================================ */
.form-control-custom {
    padding: 0.75rem 1rem;
    padding-left: 2.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(24, 62, 100, 0.1);
    background: white;
}

.form-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

/* ============================================
   Icon Containers
   ============================================ */
.icon-container {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-container,
.report-card .icon-container {
    width: 48px !important;
    height: 48px !important;
}

.icon-container.bg-primary {
    background: #183E641A !important;
    color: var(--primary) !important;
}

.icon-container.bg-accent {
    background: #6CA3D81A !important;
    color: var(--accent) !important;
}

.icon-container.bg-secondary {
    background: #CD9BBF33 !important;
    color: var(--secondary);
}

.icon-container.bg-gradient-primary {
    background: linear-gradient(180deg, #183E64 0%, #6CA3D8 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    color: white;
}

.icon-container.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-container.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Animations
   ============================================ */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-primary-custom {
    color: var(--primary);
}

.text-secondary-custom {
    color: var(--secondary);
}

.text-accent-custom {
    color: var(--accent);
}

.transition-smooth {
    transition: all 0.3s ease;
}

.rounded-custom {
    border-radius: 1.5rem;
}

.rounded-custom-lg {
    border-radius: 2rem;
}

.shadow-custom {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.shadow-custom-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Language Selector Button
   ============================================ */
.language-btn {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(24, 62, 100, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.language-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   View Toggle Buttons
   ============================================ */
.view-toggle-btn {
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    background: #f3f4f6;
    color: #6A7282;
    width: 36px;
    height: 36px;
}

.view-toggle-btn.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 2px 8px rgba(108, 163, 216, 0.3);
}

.view-toggle-btn:hover:not(.active) {
    background: #e5e7eb;
}

/* ============================================
   Responsive Utilities
   ============================================ */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.75rem 1.5rem;
    }
}

/* ============================================
   Loading Spinner
   ============================================ */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   Progress Bar
   ============================================ */
.progress-custom {
    height: 0.5rem;
    background: #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
}

.progress-bar-custom {
    height: 100%;
    background: var(--secondary);
    border-radius: 1rem;
    transition: width 0.5s ease;
}

/* ============================================
   Empty State
   ============================================ */
.empty-state {
    text-align: center;
    padding: 5rem 1rem;
}

.empty-state-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    border-radius: 1.5rem;
    background: rgba(108, 163, 216, 0.1);
    border: 2px solid rgba(108, 163, 216, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Font Size
   ============================================ */

.fs-10 {
    font-size: 10px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-30 {
    font-size: 30px !important;
}

.fs-48 {
    font-size: 48px !important;
}

.fs-60 {
    font-size: 60px !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.text-secondary {
    color: #4A5565 !important;
}

.form-label {
    color: #364153 !important;
}

/* ============================================
   Upload Page Styles
   ============================================ */
.upload-page-bg {
    background: #9CA3AF;
}

.upload-page-title {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
}

.upload-page-subtitle {
    font-size: 16px;
    color: #4B5563;
    margin: 0;
}

.upload-option-card {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 20px;
    padding: 3rem 2rem;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-option-card:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-4px);
}

.upload-option-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 28px;
}

.camera-icon {
    background: rgba(108, 163, 216, 0.15);
    color: #6CA3D8;
}

.upload-icon {
    background: rgba(108, 163, 216, 0.15);
    color: #6CA3D8;
}

.paste-icon {
    background: rgba(205, 155, 191, 0.15);
    color: #CD9BBF;
}

.upload-option-title {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.upload-option-subtitle {
    font-size: 14px;
    color: #6A7282;
    margin: 0;
}

.upload-tips-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 1.5rem 2rem;
}

.upload-tips-icon {
    font-size: 20px;
    color: #6CA3D8;
}

.upload-tips-title {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.upload-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #4B5563;
}

.upload-tips-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.upload-tips-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6CA3D8;
    font-weight: bold;
}

.upload-tips-list li:last-child {
    margin-bottom: 0;
}

.upload-view-toggle {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0.5rem;
}

.upload-view-btn {
    background: transparent;
    border: none;
    color: #4B5563;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.upload-view-btn.active {
    background: #183E64;
    color: white;
}

.upload-view-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

.upload-processing-modal {
    border-radius: 24px;
    border: none;
}

.upload-processing-icon {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    background: #6CA3D8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 36px;
    color: white;
}

.upload-processing-title {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
}

.upload-processing-subtitle {
    font-size: 14px;
    color: #6A7282;
    margin: 0;
}

.upload-progress-bar {
    height: 6px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
}

.upload-progress-fill {
    height: 100%;
    background: #CD9BBF;
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
}

.upload-processing-steps {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.upload-step {
    padding: 0.5rem 0;
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.5;
}

.upload-step i {
    margin-right: 0.5rem;
    display: inline-block;
}

.upload-step.active {
    color: #6CA3D8;
    font-weight: 600;
}

.upload-step.completed {
    color: #10B981;
}

.upload-step.completed i.bi-circle:before,
.upload-step.completed i.bi-arrow-repeat:before {
    content: "\f26b";
}

/* Initial simple modal state */
.upload-modal-simple .modal-dialog {
    max-width: 400px;
    transition: max-width 0.4s ease;
}

.upload-modal-simple .upload-processing-steps,
.upload-modal-simple .upload-progress-bar {
    display: none;
}

.upload-modal-simple .upload-processing-subtitle {
    display: block;
}

.upload-modal-simple .upload-icon-simple {
    display: block;
}

.upload-modal-simple .upload-processing-icon {
    background: #183E64;
}

.upload-modal-simple .upload-icon-detailed {
    display: none;
}

/* Detailed modal state */
.upload-modal-detailed .modal-dialog {
    max-width: 500px;
    transition: max-width 0.4s ease;
}

.upload-modal-detailed .upload-processing-subtitle {
    display: none;
}

.upload-modal-detailed .upload-processing-steps,
.upload-modal-detailed .upload-progress-bar {
    display: block;
}

.upload-modal-detailed .upload-icon-simple {
    display: none;
}

.upload-modal-detailed .upload-icon-detailed {
    display: block;
    animation: spinWithFade 5s linear infinite;
}

.custom-rounded-top {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.custom-rounded-bottom {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

/* Spinner animation with opacity fade */
@keyframes spinWithFade {
    0% {
        transform: rotate(0deg);
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: rotate(360deg);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .upload-page-title {
        font-size: 24px;
    }

    .upload-option-card {
        padding: 2rem 1.5rem;
    }

    .upload-option-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .upload-modal-simple {
        max-width: 100%;
    }

    .upload-modal-detailed {
        max-width: 100%;
    }
}

/* ============================================
   Profile Page Styles
   ============================================ */

/* Profile Card */
.profile-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #183E64;
    border: 1px solid #183E64;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 36px;
}

.profile-name {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.profile-email {
    font-size: 14px;
    color: #4A5565;
    margin-bottom: 2rem;
}

.profile-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}

.profile-info-label {
    font-size: 14px;
    color: #4A5565;
}

.profile-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
}

.profile-status-badge {
    font-size: 14px;
    font-weight: 600;
    color: #00A63E;
}

/* Privacy & Security Card */
.privacy-security-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.privacy-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(108, 163, 216, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.privacy-title {
    font-size: 18px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 0.75rem;
}

.privacy-text {
    font-size: 14px;
    color: #4A5565;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Settings Cards */
.settings-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.settings-card-header {
    background: white;
    padding: 1.25rem 1.5rem 0px 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
}

.settings-card-body {
    padding: 1.5rem;
}

.settings-field {
    margin-bottom: 1.25rem;
}

.settings-field:last-child {
    margin-bottom: 0;
}

.settings-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #364153;
    margin-bottom: 0.5rem;
}

.settings-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    color: #1F2937;
    background: #F9FAFB;
}

.settings-input:focus {
    outline: none;
    border-color: #6CA3D8;
    background: white;
}

.settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: #F9FAFB;
}

.settings-row-title {
    font-size: 16px;
    font-weight: 600;
    color: #101828;
    margin-bottom: 0.25rem;
}

.settings-row-subtitle {
    font-size: 14px;
    color: #4A5565;
}

.settings-divider {
    margin: 0.75rem 0;
    border-color: #F3F4F6;
}

.btn-action-link {
    border-radius: 14px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    padding: 8px 16px;
    cursor: pointer;
    transition: color 0.2s ease;
    color: #183E64;
    font-size: 14px;
    font-weight: 600;
}

.btn-action-link:hover {
    color: #5a8fc7;
}

.btn-action-link.text-danger {
    color: #DC2626;
}

.btn-action-link.text-danger:hover {
    color: #B91C1C;
}

.settings-row-danger {
    border: 1px solid #FFC9C9;
    background: #FEF2F2;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #6CA3D8;
    border-color: #6CA3D8;
}

/* ============================================
   Report Details Page Styles
   ============================================ */

/* Hero Card */
.report-hero-card {
    background: linear-gradient(180deg, #183E64 0%, #2A5280 50%, #6CA3D8 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.report-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.375rem 0.875rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    margin-right: 0.75rem;
}

.report-date {
    font-size: 14px;
    opacity: 0.9;
}

.report-action-btn {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.10);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.report-action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.report-hero-title {
    color: #FFF;
    font-size: 36px;
    font-weight: 700;
    font-weight: 700;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

.report-hero-subtitle {
    color: rgba(255, 255, 255, 0.90);
    font-size: 18px;
    font-weight: 400;
    line-height: 29.25px;
    margin-bottom: 0;
    max-width: 70%;
}

.report-stat-card {
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 0;
    padding: 1rem;
    text-align: center;
}


.report-stat-label {
    color: rgba(255, 255, 255, 0.60);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 0.5rem;
}

.report-stat-value {
    font-size: 48px;
    font-weight: 900;
}

/* Results Card */
.results-card {
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.results-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.results-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(180deg, #CD9BBF 0%, #B885A8 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-title {
    font-size: 24px;
    font-weight: 700;
    color: #101828;
    margin: 0;
}

.results-subtitle {
    font-size: 14px;
    color: #6A7282;
    margin-bottom: 1.5rem;
}

/* Result Item */
.result-item {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.result-item:last-of-type {
    margin-bottom: 1.5rem;
}

.result-item-label {
    text-transform: uppercase;
    margin: 0px;
    color: #4A5565;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.6px;
}

.result-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.result-badge-normal {
    background: #00BC7D;
    color: #fff;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 188, 125, 0.2);
}

.result-badge-high,
.result-badge-low {
    background: #FB2C36;
    color: #fff;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(251, 44, 54, 0.2);
}


.result-item-value {
    color: #183E64;
    font-size: 36px;
    font-weight: 900;
    line-height: 36px;
    letter-spacing: -0.9px;
    margin-bottom: 0px;
}

.result-item-range {
    font-size: 13px;
    color: #6A7282;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.result-range-normal {
    color: #00BC7D;
    font-weight: 600;
}

.result-range-high,
.result-range-low {
    color: #FB2C36;
    font-weight: 600;
}

/* Result Chart */
.result-chart-track {
    position: relative;
    height: 12px;
    background: linear-gradient(90deg, #FEE2E2 0%, #D1FAE5 50%, #FEE2E2 100%);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.result-chart-marker {
    position: absolute;
    width: 6px;
    height: 18px;
    border-radius: 3px;
    top: -3px;
    transform: translateX(-50%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.result-chart-marker-normal {
    background: #00BC7D;
    box-shadow: 0 0 10px rgba(0, 188, 125, 0.5);
}

.result-chart-marker-high,
.result-chart-marker-low {
    background: #FB2C36;
    box-shadow: 0 0 10px rgba(251, 44, 54, 0.5);
}


.result-chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #9CA3AF;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding-top: 4px;
}

/* Health Score */
.health-score-section {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.25rem;
}

.health-score-label {
    font-size: 13px;
    font-weight: 600;
    color: #6A7282;
    margin-bottom: 0.75rem;
}

.health-score-bar {
    height: 10px;
    background: #E5E7EB;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.health-score-fill {
    height: 100%;
    background: linear-gradient(180deg, #6CA3D8 0%, #CD9BBF 100%);
    border-radius: 4px;
}

.health-score-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.health-score-value {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
}

.health-score-desc {
    font-size: 12px;
    color: #6A7282;
}

/* Info Card */
.info-card {
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.info-icon-blue {
    background: linear-gradient(180deg, #6CA3D8 0%, #5891C7 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.info-icon-pink {
    background: linear-gradient(180deg, #CD9BBF 0%, #B885A8 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.info-title {
    color: #101828;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
}

.info-subtitle {
    font-size: 14px;
    color: #6A7282;
    margin: 0;
}

.info-list-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.info-list-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #6CA3D8;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.info-list-text {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
    padding-top: 0.25rem;
}

/* Ask Doctor Card */
.ask-doctor-card {
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    background: linear-gradient(180deg, #183E64 0%, #2A5280 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    padding: 1.5rem;
    color: white;
}

.ask-doctor-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.ask-doctor-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.ask-doctor-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.ask-doctor-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}


.doctor-question-item {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.10);
    padding: 1rem 1.4rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 14px;
    line-height: 1.5;
}

.pink-dot {
    display: block;
    height: 8px;
    width: 8px;
    background-color: #CD9BBF;
    border-radius: 50%;
}

.red-dot {
    display: block;
    height: 8px;
    width: 8px;
    background-color: #FB2C36;
    border-radius: 50%;
}

.green-dot {
    display: block;
    height: 8px;
    width: 8px;
    background-color: #00BC7D;
    border-radius: 50%;
}

.doctor-disclaimer {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    border-radius: 16px;
    border: 1px solid rgba(205, 155, 191, 0.30);
    background: rgba(205, 155, 191, 0.20);
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 13px;
    line-height: 1.6;
}

.doctor-disclaimer i {
    font-size: 16px;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Bottom Actions */
.report-bottom-actions {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

.bottom-action-card {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.bottom-action-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(180deg, #183E64 0%, #6CA3D8 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-action-title {
    color: #101828;
    font-size: 18px;
    font-weight: 700;
}

.bottom-action-subtitle {
    font-size: 14px;
    color: #4A5565;
}

.btn-download-pdf {
    border-radius: 14px;
    background: linear-gradient(180deg, #183E64 0%, #2A5280 100%) !important;
    padding: 0.625rem 1.5rem;
    font-size: 14px;
    font-weight: 600;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-download-pdf:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .report-bottom-actions {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .bottom-action-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */


@media (max-width: 1200px) {
    .language-btn {
        position: static;
    }
}

/* Tablet Breakpoint (max-width: 992px) */
@media (max-width: 992px) {

    /* Typography */
    .fs-60 {
        font-size: 42px !important;
    }

    .fs-48 {
        font-size: 36px !important;
    }

    .fs-30 {
        font-size: 24px !important;
    }

    /* Report Details Hero */
    .report-hero-title {
        font-size: 28px !important;
    }

    .report-hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .report-stat-value {
        font-size: 36px;
    }

    /* Results Cards */
    .results-title,
    .info-title,
    .ask-doctor-title {
        font-size: 20px;
    }

    .result-item-value {
        font-size: 28px;
    }

    /* Profile */
    .profile-card {
        padding: 1.5rem;
    }
}

/* Mobile Landscape / Small Tablet (max-width: 768px) */
@media (max-width: 768px) {

    /* Container Padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Typography */
    .fs-60 {
        font-size: 32px !important;
    }

    .fs-48 {
        font-size: 28px !important;
    }

    .fs-30 {
        font-size: 20px !important;
    }

    .fs-20 {
        font-size: 16px !important;
    }

    .fs-18 {
        font-size: 16px !important;
    }

    .fs-5 {
        font-size: 16px !important;
    }

    /* Buttons */
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.75rem 1.5rem;
        font-size: 14px;
    }

    /* Cards */
    .card-custom,
    .card-feature {
        padding: 1.25rem;
    }

    .report-card {
        padding: 1.25rem;
    }

    /* Stats */
    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .stat-icon img {
        width: 20px;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Icon Containers */
    .icon-container {
        width: 2.5rem;
        height: 2.5rem;
    }

    .icon-container img {
        width: 20px;
    }

    .logo-container,
    .report-card .icon-container {
        width: 40px !important;
        height: 40px !important;
    }

    /* Language Button */
    .language-btn {
        width: 2.5rem;
        height: 2.5rem;
        top: 1rem;
        right: 1rem;
    }

    /* Upload Page */
    .upload-page-title {
        font-size: 24px;
    }

    .upload-option-card {
        padding: 2rem 1.5rem;
    }

    .upload-option-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .upload-modal-simple .modal-dialog,
    .upload-modal-detailed .modal-dialog {
        max-width: 100% !important;
    }

    /* Profile Page */
    .profile-avatar {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .profile-name {
        font-size: 18px;
    }

    .settings-card-header {
        font-size: 16px;
        padding: 1rem 1.25rem 0 1.25rem;
    }

    .settings-card-body {
        padding: 1.25rem;
    }

    /* Report Details */
    .report-hero-card {
        padding: 1.5rem;
    }

    .report-hero-title {
        font-size: 24px !important;
        margin-top: 0.75rem;
    }

    .report-hero-subtitle {
        font-size: 14px;
        line-height: 28px;
    }

    .report-stat-card {
        padding: 0.75rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.30);
    }

    .report-stat-card:last-child {
        border-bottom: none;
        padding: 0px;
    }

    .report-stat-value {
        font-size: 32px;
    }

    .report-action-btn {
        width: 40px;
        height: 40px;
    }

    .results-card,
    .info-card,
    .ask-doctor-card {
        padding: 1.25rem;
    }

    .results-title,
    .info-title,
    .ask-doctor-title {
        font-size: 18px;
    }

    .results-icon,
    .info-icon,
    .ask-doctor-icon {
        width: 40px;
        height: 40px;
    }

    .result-item {
        padding: 1rem;
    }

    .result-item-value {
        font-size: 24px;
    }

    .health-score-value {
        font-size: 18px;
    }

    .bottom-action-icon {
        width: 40px;
        height: 40px;
    }

    .bottom-action-title {
        font-size: 16px;
    }
}

/* Mobile Portrait (max-width: 576px) */
@media (max-width: 576px) {

    /* Typography */
    .fs-60 {
        font-size: 28px !important;
    }

    .fs-48 {
        font-size: 24px !important;
    }

    .fs-30 {
        font-size: 18px !important;
    }

    .fs-20 {
        font-size: 14px !important;
    }

    .fs-18 {
        font-size: 14px !important;
    }

    .fs-16 {
        font-size: 14px !important;
    }

    /* Headings */
    h1 {
        font-size: 1.75rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    h4 {
        font-size: 1.1rem !important;
    }

    .h3 {
        font-size: 20px !important;
    }

    .h5 {
        font-size: 16px !important;
    }

    .h6 {
        font-size: 16px !important;
    }

    /* Spacing */
    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    /* Buttons */
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.625rem 1.25rem;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .btn-download-pdf {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    /* Cards */
    .card-custom,
    .card-feature,
    .report-card {
        padding: 1rem;
        border-radius: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    /* Stats */
    .stat-number {
        font-size: 1.75rem;
    }


    .stat-label {
        font-size: 0.7rem;
    }

    /* Icon Containers */
    .icon-container {
        width: 2rem;
        height: 2rem;
        border-radius: 0.75rem;
    }

    .logo-container {
        width: 36px !important;
        height: 36px !important;
    }

    .report-card .icon-container {
        width: 36px !important;
        height: 36px !important;
    }

    /* Forms */
    .form-control-custom {
        padding: 0.625rem 0.875rem;
        padding-left: 2.25rem;
        font-size: 14px;
    }

    .form-icon {
        left: 0.625rem;
        font-size: 0.875rem;
    }

    .settings-input {
        padding: 0.5rem 0.75rem;
        font-size: 13px;
    }

    /* Language Button */
    .language-btn {
        width: 2.25rem;
        height: 2.25rem;
        top: 0.75rem;
        right: 0.75rem;
    }

    /* View Toggle */
    .view-toggle-btn {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    /* Upload Page */
    .upload-page-title {
        font-size: 20px;
    }

    .upload-page-subtitle {
        font-size: 14px;
    }

    .upload-option-card {
        padding: 1.5rem 1rem;
    }

    .upload-option-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 1rem;
    }

    .upload-option-title {
        font-size: 16px;
    }

    .upload-option-subtitle {
        font-size: 13px;
    }

    .upload-tips-card {
        padding: 1.25rem 1.5rem;
    }

    .upload-tips-title {
        font-size: 14px;
    }

    .upload-tips-list {
        font-size: 13px;
    }

    /* Profile Page */
    .profile-card {
        padding: 1.25rem;
    }

    .profile-avatar {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .profile-name {
        font-size: 16px;
    }

    .profile-email {
        font-size: 13px;
        margin-bottom: 1.5rem;
    }

    .profile-info-item {
        padding: 5px 0;
    }

    .profile-info-label,
    .profile-info-value {
        font-size: 13px;
    }

    .privacy-security-card {
        padding: 1.25rem;
    }

    .privacy-icon {
        width: 36px;
        height: 36px;
    }

    .privacy-title {
        font-size: 16px !important;
    }

    .privacy-text {
        font-size: 13px;
    }

    .settings-card-header {
        padding: 0.875rem 1rem 0 1rem;
    }

    .settings-card-body {
        padding: 1rem;
    }

    .settings-row {
        padding: 0.625rem 0.875rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .settings-row-title {
        font-size: 14px;
    }

    .settings-row-subtitle {
        font-size: 13px;
    }

    .btn-action-link {
        padding: 6px 12px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

    /* Report Details */
    .report-hero-card {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .report-badge {
        padding: 0.25rem 0.625rem;
        font-size: 11px;
        margin-right: 0.5rem;
    }

    .report-date {
        font-size: 12px;
    }

    .report-action-btn {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .report-hero-title {
        font-size: 20px !important;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .report-hero-subtitle {
        font-size: 13px;
    }

    .report-stat-card {
        padding: 0.625rem;
    }

    .report-stat-label {
        font-size: 11px;
        margin-bottom: 0.375rem;
    }

    .report-stat-value {
        font-size: 28px;
    }

    .results-card,
    .info-card {
        padding: 1rem;
        border-radius: 16px;
    }

    .ask-doctor-card {
        padding: 1rem;
        border-radius: 16px;
    }

    .results-title,
    .info-title,
    .ask-doctor-title {
        font-size: 16px !important;
    }

    .results-subtitle,
    .info-subtitle,
    .ask-doctor-subtitle {
        font-size: 13px;
    }

    .results-icon,
    .info-icon,
    .ask-doctor-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 16px;
    }

    .result-item {
        padding: 0.875rem;
        border-radius: 10px;
    }

    .result-item-label {
        font-size: 11px;
    }

    .result-item-value {
        font-size: 20px;
    }

    .result-item-range {
        font-size: 12px;
    }

    .result-badge {
        padding: 0.25rem 0.625rem;
        font-size: 10px;
    }

    .health-score-section {
        padding: 1rem;
    }

    .health-score-label {
        font-size: 12px;
    }

    .health-score-value {
        font-size: 16px;
    }

    .health-score-desc {
        font-size: 11px;
    }

    .info-list-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .info-list-text {
        font-size: 13px;
    }

    .doctor-question-item {
        padding: 0.75rem 1rem;
        font-size: 13px;
    }

    .doctor-disclaimer {
        padding: 0.875rem;
        font-size: 12px;
    }

    .bottom-action-card {
        gap: 0.75rem;
    }

    .bottom-action-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .bottom-action-title {
        font-size: 14px;
    }

    .bottom-action-subtitle {
        font-size: 13px;
    }

    .report-bottom-actions {
        padding: 1rem;
        border-radius: 16px;
    }

    /* Empty State */
    .empty-state {
        padding: 3rem 1rem;
    }

    .empty-state-icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1rem;
    }

    .empty-state-icon i {
        font-size: 2rem !important;
    }

    /* Badge Sizing */
    .badge-status {
        padding: 3px 8px;
        font-size: 0.7rem;
    }

    /* Progress Bar */
    .progress-custom {
        height: 0.375rem;
    }

}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {

    /* Typography */
    .fs-60 {
        font-size: 24px !important;
    }

    .fs-48 {
        font-size: 20px !important;
    }

    .fs-30 {
        font-size: 16px !important;
    }

    /* Container */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    /* Stats */
    .stat-number {
        font-size: 1.5rem;
    }

    .stat-icon {
        width: 1.75rem;
        height: 1.75rem;
    }

    /* Buttons */
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.5rem 1rem;
        font-size: 13px;
    }

    /* Cards */
    .card-custom,
    .card-feature,
    .report-card,
    .stat-card {
        padding: 0.875rem;
    }

    /* Upload */
    .upload-option-card {
        padding: 1.25rem 0.875rem;
    }

    .upload-option-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Report Details */
    .report-hero-title {
        font-size: 18px !important;
    }

    .report-stat-value {
        font-size: 24px;
    }

    .result-item-value {
        font-size: 18px;
    }
}

/* ============================================
   Dynamic HTML Content (AI Generated)
   ============================================ */
.dynamic-html-content {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4B5563;
}

.dynamic-html-content h1,
.dynamic-html-content h2,
.dynamic-html-content h3 {
    color: #183E64;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.dynamic-html-content h1 {
    font-size: 1.25rem;
}

.dynamic-html-content h2 {
    font-size: 1.125rem;
}

.dynamic-html-content h3 {
    font-size: 1.05rem;
}

.dynamic-html-content p {
    margin-bottom: 0.875rem;
}

.dynamic-html-content ul,
.dynamic-html-content ol {
    margin-bottom: 1.25rem;
    padding-left: 0;
    list-style: none;
}

.dynamic-html-content li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
}

/* Specific styling for Info Card lists to match numbered design */
.info-card .dynamic-html-content ol {
    counter-reset: item;
}

.info-card .dynamic-html-content ol li {
    padding-left: 3.5rem;
    margin-bottom: 1.25rem;
    min-height: 28px;
    display: flex;
    align-items: center;
}

.info-card .dynamic-html-content ol li:before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: #6CA3D8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.dynamic-html-content ul li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #6CA3D8;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;
    top: -2px;
}

.dynamic-html-content strong {
    color: #183E64;
    font-weight: 700;
}

/* Buttons */
.btn-pink {
    background: linear-gradient(180deg, #CD9BBF 0%, #B885A8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(205, 155, 191, 0.4);
}

.btn-pink:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px -2px rgba(205, 155, 191, 0.5);
    color: white;
}

.btn-download-pdf:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px -2px rgba(24, 62, 100, 0.3);
}

.result-item {
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.result-item:hover {
    background: #fff;
    border-color: #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}

.health-score-fill {
    background: linear-gradient(90deg, #6CA3D8 0%, #CD9BBF 100%);
    box-shadow: 0 0 10px rgba(108, 163, 216, 0.3);
}

.doctor-question-item {
    transition: all 0.2s ease;
}

.doctor-question-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.doctor-disclaimer {
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.dynamic-html-content h1:first-child,
.dynamic-html-content h2:first-child,
.dynamic-html-content h3:first-child {
    margin-top: 0;
}