/* SafeTEE Assessment Styles */

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: popupFadeIn 0.3s ease;
    justify-content: center;
    align-items: center;

    /* text-align: center; */
}
/* 
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
} */

.popup-content button.button {
    border:none;

}
.popup-content input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    /* border: 2px solid #ddd; */
    /* border-radius: 4px; */
    /* font-size: 16px;
    box-sizing: border-box;
    font-family: Arial, sans-serif; */
} 

.popup-content input:focus {
    outline: none;
    /* border-color: #4CAF50; */
    /* box-shadow: 0 0 5px rgba(76, 175, 80, 0.3); */
}

/* .popup-content button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: Arial, sans-serif;
    margin-top: 5px;
} */

.popup-content .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    width: auto;
    background: none;
    padding: 0;
    line-height: 1;
    transition: color 0.3s;
}

.popup-content .close-btn:hover {
    color: #333;
}

.error-message {
    color: #f44336;
    font-size: 14px;
    margin: 5px 0 10px 0;
    display: none;
    /* font-family: Arial, sans-serif; */
}

.error-message.show {
    display: block;
}

/* Style for the assessment element (if you want to style it) */
#assessment {
    cursor: pointer;
}
