/* _content/HealthPortal/App.razor.rz.scp.css */
/* _content/HealthPortal/Components/SymptomQuestionModal.razor.rz.scp.css */
.modal-overlay[b-3lvwh84yve] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content.symptom-modal[b-3lvwh84yve] {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn-b-3lvwh84yve 0.3s ease-out;
}

@keyframes slideIn-b-3lvwh84yve {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-3lvwh84yve] {
    padding: 25px 30px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2[b-3lvwh84yve] {
    margin: 0;
    color: #5B2E91;
    font-size: 24px;
    font-weight: 700;
}

.modal-close[b-3lvwh84yve] {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover[b-3lvwh84yve] {
    background: #f5f5f5;
    color: #333;
}

.modal-body.symptom-modal-body[b-3lvwh84yve] {
    padding: 40px 30px;
}

.symptom-question[b-3lvwh84yve] {
    margin-bottom: 30px;
}

.question-text[b-3lvwh84yve] {
    font-size: 20px;
    color: #333;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.symptom-options[b-3lvwh84yve] {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.symptom-btn[b-3lvwh84yve] {
    flex: 1;
    padding: 18px 30px;
    border-radius: 12px;
    border: 2px solid #5B2E91;
    background: white;
    color: #5B2E91;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.symptom-btn:hover[b-3lvwh84yve] {
    background: #5B2E91;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(91, 46, 145, 0.3);
}

.symptom-btn:active[b-3lvwh84yve] {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .modal-content.symptom-modal[b-3lvwh84yve] {
        width: 95%;
        max-width: none;
    }

    .modal-body.symptom-modal-body[b-3lvwh84yve] {
        padding: 30px 20px;
    }

    .question-text[b-3lvwh84yve] {
        font-size: 18px;
    }

    .symptom-options[b-3lvwh84yve] {
        flex-direction: column;
    }

    .symptom-btn[b-3lvwh84yve] {
        width: 100%;
    }
}

/* _content/HealthPortal/Pages/MentalHealth.razor.rz.scp.css */

*[b-zdtdptrxoq] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-zdtdptrxoq] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #FFD900;
    min-height: 100vh;
    padding: 0;
}

.aviva-header[b-zdtdptrxoq] {
    background: #FFD900;
    padding: 20px 0;
}

.aviva-header .container[b-zdtdptrxoq] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.aviva-logo[b-zdtdptrxoq] {
    height: 20px;
}

.container[b-zdtdptrxoq] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
}

.portal-header[b-zdtdptrxoq] {
    background: white;
    padding: 25px 50px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hcml-logo[b-zdtdptrxoq] {
    height: 30px;
}

.user-menu[b-zdtdptrxoq] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #333;
}

.user-menu:hover[b-zdtdptrxoq] {
    background: #e5e5e5;
}

.user-icon[b-zdtdptrxoq] {
    font-size: 18px;
}

.hero-section[b-zdtdptrxoq] {
    background: white;
    position: relative;
    padding: 60px 50px 40px 50px;
    overflow: hidden;
    height: auto;
}

.hero-bg[b-zdtdptrxoq] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%; /* 👈 only cover upper portion */
    object-fit: cover;
    object-position: center;
    z-index: 0;
    border-bottom: 4px solid white; /* optional for smoother fade */
}

.hero-content[b-zdtdptrxoq] {
    position: relative;
    z-index: 1;
    background: transparent;
}

.hero-text-box[b-zdtdptrxoq] {
    background: #ffffffed;
    padding: 30px 40px;
    border-radius: 20px;
    max-width: 650px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hero-text-box h1[b-zdtdptrxoq] { 
    color: #5B2E91;
    margin-bottom: 10px;
    font-weight: 700;
}

h1.long-title[b-zdtdptrxoq]  {
    font-size: 30px;
    
}
		
h1.short-title[b-zdtdptrxoq] {
    font-size: 42px;
    
}
.hero-text-box p[b-zdtdptrxoq] {
    
    font-size: 20px;
    line-height: 1.5;
    color: #5B2E91;
}

.services-grid[b-zdtdptrxoq] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.service-card[b-zdtdptrxoq] {
    background: #fffffff5;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #FFD900;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover[b-zdtdptrxoq] {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #5B2E91;
}

.service-icon-img[b-zdtdptrxoq] {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: block;
}

.service-card h3[b-zdtdptrxoq] {
    color: #003366;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p[b-zdtdptrxoq] {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
}

.care-section[b-zdtdptrxoq] {
    background: #D4F5F5;
    padding: 50px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.care-section h2[b-zdtdptrxoq] {
    color: #5B2E91;
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.action-buttons[b-zdtdptrxoq] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.action-btn[b-zdtdptrxoq] {
    background: #551e9c;
    color: white;
    padding: 30px 35px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(91, 46, 145, 0.3);
}

.action-btn:hover[b-zdtdptrxoq] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(91, 46, 145, 0.4);
    background: #4A2575;
}

.action-icon[b-zdtdptrxoq] {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.ai-assistant[b-zdtdptrxoq] {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #333;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    z-index: 1000;
}

.ai-assistant:hover[b-zdtdptrxoq] {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.ai-icon[b-zdtdptrxoq] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .services-grid[b-zdtdptrxoq],
    .action-buttons[b-zdtdptrxoq] {
        grid-template-columns: 1fr;
    }

    .hero-text-box h1[b-zdtdptrxoq] {
        font-size: 32px;
    }

    .care-section h2[b-zdtdptrxoq] {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .aviva-header[b-zdtdptrxoq],
    .portal-header[b-zdtdptrxoq],
    .hero-section[b-zdtdptrxoq],
    .care-section[b-zdtdptrxoq] {
        padding: 20px;
    }

    .container[b-zdtdptrxoq] {
        padding: 0 20px 20px 20px;
    }

    .portal-header[b-zdtdptrxoq] {
        flex-direction: column;
        gap: 15px;
    }

    .ai-assistant[b-zdtdptrxoq] {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

.hero-line[b-zdtdptrxoq] {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  object-fit: cover;
  z-index: 2;
}

.top-line[b-zdtdptrxoq] {
  top: 0;
}

.bottom-line[b-zdtdptrxoq] {
  bottom: 0;
}

/* _content/HealthPortal/Pages/Msk.razor.rz.scp.css */
*[b-ox00d6kdpo] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-ox00d6kdpo] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #FFD900;
    min-height: 100vh;
    padding: 0;
}

.aviva-header[b-ox00d6kdpo] {
    background: #FFD900;
    padding: 20px 0;
}

.aviva-header .container[b-ox00d6kdpo] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.aviva-logo[b-ox00d6kdpo] {
    height: 20px;
}

.container[b-ox00d6kdpo] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
}

.portal-header[b-ox00d6kdpo] {
    background: white;
    padding: 25px 50px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hcml-logo[b-ox00d6kdpo] {
    height: 30px;
}

.user-menu[b-ox00d6kdpo] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #333;
}

.user-menu:hover[b-ox00d6kdpo] {
    background: #e5e5e5;
}

.user-icon[b-ox00d6kdpo] {
    font-size: 18px;
}

.hero-section[b-ox00d6kdpo] {
    background: white;
    position: relative;
    padding: 60px 50px 40px 50px;
    overflow: hidden;
    height: auto;
}

.hero-bg[b-ox00d6kdpo] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    border-bottom: 4px solid white;
}

.hero-content[b-ox00d6kdpo] {
    position: relative;
    z-index: 1;
    background: transparent;
}

.hero-text-box[b-ox00d6kdpo] {
    background: #ffffffed;
    padding: 30px 40px;
    border-radius: 20px;
    max-width: 650px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hero-text-box h1[b-ox00d6kdpo] {
    color: #5B2E91;
    margin-bottom: 10px;
    font-weight: 700;
}

h1.long-title[b-ox00d6kdpo] {
    font-size: 30px;
}

h1.short-title[b-ox00d6kdpo] {
    font-size: 42px;
}

.hero-text-box p[b-ox00d6kdpo] {
    font-size: 20px;
    line-height: 1.5;
    color: #5B2E91;
}

.services-grid[b-ox00d6kdpo] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.service-card[b-ox00d6kdpo] {
    background: #fffffff5;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #FFD900;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover[b-ox00d6kdpo] {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #5B2E91;
}

.service-icon-img[b-ox00d6kdpo] {
    width: 150px;
    height: 90px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
}

.service-card h3[b-ox00d6kdpo] {
    color: #003366;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p[b-ox00d6kdpo] {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
}

.care-section[b-ox00d6kdpo] {
    background: #D4F5F5;
    padding: 50px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.care-section h2[b-ox00d6kdpo] {
    color: #5B2E91;
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.action-buttons[b-ox00d6kdpo] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.action-btn[b-ox00d6kdpo] {
    background: #551e9c;
    color: white;
    padding: 30px 35px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(91, 46, 145, 0.3);
}

.action-btn:hover[b-ox00d6kdpo] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(91, 46, 145, 0.4);
    background: #4A2575;
}

.action-icon[b-ox00d6kdpo] {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.ai-assistant[b-ox00d6kdpo] {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: rgba(51, 51, 51, 0.85) !important;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    z-index: 1000;
}

.ai-assistant:hover[b-ox00d6kdpo] {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.ai-icon[b-ox00d6kdpo] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.hero-line[b-ox00d6kdpo] {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    object-fit: cover;
    z-index: 2;
}

.top-line[b-ox00d6kdpo] {
    top: 0;
}

.bottom-line[b-ox00d6kdpo] {
    bottom: 0;
}

@media (max-width: 1024px) {
    .services-grid[b-ox00d6kdpo],
    .action-buttons[b-ox00d6kdpo] {
        grid-template-columns: 1fr;
    }

    .hero-text-box h1[b-ox00d6kdpo] {
        font-size: 32px;
    }

    .care-section h2[b-ox00d6kdpo] {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .aviva-header[b-ox00d6kdpo],
    .portal-header[b-ox00d6kdpo],
    .hero-section[b-ox00d6kdpo],
    .care-section[b-ox00d6kdpo] {
        padding: 20px;
    }

    .container[b-ox00d6kdpo] {
        padding: 0 20px 20px 20px;
    }

    .portal-header[b-ox00d6kdpo] {
        flex-direction: column;
        gap: 15px;
    }

    .ai-assistant[b-ox00d6kdpo] {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
        background: rgba(51, 51, 51, 0.85) !important;
    }
}

/* _content/HealthPortal/Pages/Outcome.razor.rz.scp.css */
.outcome-box[b-bes898wott] {
    background: #f3f0ff;
    border: 2px solid #6a1b9a;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.outcome-text[b-bes898wott] {
    color: #4a148c;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 10px;
}

.assessment-table[b-bes898wott] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    .assessment-table th[b-bes898wott], .assessment-table td[b-bes898wott] {
        border: 1px solid #ddd;
        padding: 8px;
    }

    .assessment-table th[b-bes898wott] {
        background-color: #f9f9f9;
        text-align: left;
    }

.json-viewer[b-bes898wott] {
    margin-top: 20px;
    background: #fafafa;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
}

    .json-viewer pre[b-bes898wott] {
        font-family: monospace;
        font-size: 0.9rem;
        overflow-x: auto;
        white-space: pre-wrap;
    }

.assessment-recommendation[b-bes898wott] {
    margin-top: 30px;
    background: white;
    border: 2px solid #6a1b9a;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recommendation-title[b-bes898wott] {
    color: #5B2E91;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid #6a1b9a;
    padding-bottom: 10px;
}

.recommendation-content[b-bes898wott] {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

    .recommendation-content b[b-bes898wott] {
        color: #4a148c;
        font-weight: 700;
    }

    .recommendation-content br[b-bes898wott] {
        margin-bottom: 12px;
    }

.thank-you-message[b-bes898wott] {
    text-align: center;
    padding: 30px 0 40px 0;
    margin-bottom: 20px;
}

.thank-you-message h1[b-bes898wott] {
    color: #5B2E91;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.thank-you-message p[b-bes898wott] {
    color: #666;
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
}

