/* sweetalert Message */
.sweetalert-overlay {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 1000;
    /* backdrop-filter: blur(2px); */
    transition: all 1s ease-in-out;
}

.sweetalert {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(61, 61, 61, 0.3);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(76, 76, 76, 0.8);
    width: 40%;
}

.okBtn {
    background-color: rgb(255, 255, 255);
    color: #000000;
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cancelBtn {
    background-color: #f44336;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.hidemee {
    display: none;
}
/* sweetalert Message */

/* yes/no modal Message hidden */
.sweetalert-overlay-modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 1000;
    /* backdrop-filter: blur(2px); */
    transition: all 1s ease-in-out;
}

.sweetalert-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(61, 61, 61, 0.3);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(76, 76, 76, 0.8);
    width: 40%;
}
.okBtn {
    background-color: rgb(255, 255, 255);
    color: #000000;
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cancelBtn {
    background-color: #f44336;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


.hidemee {
    display: none;
}