#assessmentContainer {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
    z-index: 10000000;
}
h2 {
    color: #4A90E2;
}
.scenario {
    background-color: #e8f0fe;
    padding: 15px;
    border-left: 5px solid #4A90E2;
    margin-bottom: 20px;
    border-radius: 5px;
}


.Feedback {
    background-color: #aceb38;
    padding: 15px;
    border-bottom: 5px solid #4A90E2;
    margin-bottom: 5px;
    border-radius: 5px;
}
.options {
    margin-bottom: 20px;
}
.choice {
    margin-bottom: 20px;
    padding: 15px;
    border: 2px solid #d1e3f8;
    border-radius: 8px;
    background-color: #eef5ff;
}
.choice:hover {
    background-color: #dfeeff;
}
.rating-explanation {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.reason {
    margin-top: 10px;
}
.confidence {
    margin-top: 10px;
}
.submit-btn {
    background-color: #4A90E2;
    color: white;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.submit-btn:hover {
    background-color: #357ABD;
}


.timer {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}
label {
    font-weight: bold;
    color: #333;
}
.smallIcon{
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.noDotsUL{
    list-style-type: none; /* Removes the bullet points */
    padding-left: 0; /* Removes default padding */
}
.boxed{
    padding-top: 10px;
    border-width: 0px;
    border-bottom: #e5e6e7;
    border-bottom-width: thick;
    border-style: solid;
}
#theFeedbackArea{
    position:absolute;
    top:100px;
    left:100px;
    height: fit-content;
    width: 640px;
    display:none;
    padding: 20px;
    border-width: 1px;
    border-radius: 15px;
    border-style: solid;
    border-color: #4A90E2;
    background-color: #dfeeff;
}