.sticky {
    display: none;
}

.sticky[data-active] {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 9998; 
}

.sticky .question {

    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 80%;
    max-height: 80%;
    overflow: auto;

}

@media (max-width: 768px) {
    .sticky .question {
        width: 100%;
    }
}

.sticky .question .button-group {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    margin-top: 20px;

}

.sticky .question button[data-yes-btn] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.sticky .question button[data-no-btn] {
  background-color: #fff;
    border: none;
    cursor: pointer;
    margin-right: 10px;
    text-decoration: underline;
}