body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.custom-alert-full-bg {
    background-color: rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari */
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.custom-alert-box {
    min-width: 50vw;
    max-width: 80vw;
    max-height: 50vh;
    overflow-y: auto;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}