.jee-container{
    text-align:center;
    padding:40px 20px;
    background:#f4f8ff;
    border-radius:12px;
}

select, button{
    padding:10px 15px;
    margin:10px;
    font-size:16px;
    border-radius:6px;
    border:1px solid #ccc;
}

button{
    background:#0a58ca;
    color:#fff;
    cursor:pointer;
}

button:hover{
    background:#084298;
}

.jee-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.jee-modal-content{
    background:#fff;
    width:95%;
    max-width:700px;
    padding:25px;
    border-radius:12px;
}

.jee-top-bar{
    display:flex;
    justify-content:space-between;
    font-weight:bold;
    margin-bottom:15px;
}

.jee-options button{
    display:block;
    width:100%;
    margin:8px 0;
    background:#e9f2ff;
    color:#000;
}

.correct{
    background:#28a745 !important;
    color:white !important;
}

.wrong{
    background:#dc3545 !important;
    color:white !important;
}

.solution-box{
    background:#fff3cd;
    padding:10px;
    margin-top:10px;
    border-radius:8px;
    display:none;
}

.close-btn{
    background:#6c757d !important;
}