.assessment-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
      overflow-y: auto;
}

.assessment-box {
    background: #fff;
    max-width: 500px;
    margin: 80px auto;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;   /* ADD THIS LINE */
}
.step {
    display: none;
}

.step.active {
    display: block;
}

.options button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.2s ease;
     -webkit-tap-highlight-color: transparent;
}

.options button.selected {
    background: #e91e63;
    color: white;
}

.options button:hover {
    background: #e91e63;
    color: white;
}



#pcosAssessmentModal .modal-content {
    max-height: 90vh;
    overflow-y: auto;
    padding: 20px;
}

.pcos-risk-card{
    max-width:650px;
    margin-top:25px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    overflow:hidden;
    font-family:Arial, sans-serif;
    background:#fff;
}

.risk-header{
    color:white;
    padding:12px 16px;
    font-weight:bold;
    font-size:16px;
}

.risk-body{
    padding:18px;
}

.risk-body h3{
    margin-top:0;
}

.risk-body p{
    color:#555;
    line-height:1.6;
}

.risk-recommendation{
    margin-top:15px;
    padding:12px;
    background:#f7f7f7;
    border-left:4px solid #6a1b9a;
    font-weight:500;
}
.close-btn{
position:absolute;
top:10px;
right:15px;
font-size:28px;
cursor:pointer;
color:#444;
font-weight:bold;
}

.close-btn:hover{
color:#e91e63;
}

.assessment-btn{
display:inline-block;
background:#e91e63;
color:white;
padding:12px 22px;
border-radius:8px;
font-size:16px;
font-weight:600;
text-decoration:none;
cursor:pointer;
border:none;
transition:all 0.3s ease;
}

.assessment-btn:hover{
background:#c2185b;
transform:translateY(-1px);
box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

/* ================= BUTTON ================= */

.start-assessment-btn {
        background: #8b0428;
        color: #fff;
        padding: 14px 28px;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(139, 4, 40, 0.3);
}

.start-assessment-btn:hover {
        background: #a50631;
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(139, 4, 40, 0.4);
}

.trust-text {
        margin-top: 15px;
        font-size: 14px;
        color: #777;
}