.bendisa-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}

.bendisa-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.bendisa-modal-container {
    position: relative;
    max-width: 100%;
    width: 100vw;
    height: 100vh;
    margin: 0vh auto;
    background-color: #F5F5F5;
    overflow: hidden;
    z-index: 1;
    animation: bendisaModalFadeIn 0.3s ease-out;
}

.bendisa-modal-header {
    display: none;
}

.bendisa-modal-body {
    padding: 2rem;
    overflow-y: auto;
    height: calc(100vh - 2rem);
}

.bendisa-modal-close {
    position: absolute;
    top: 3rem;
    right: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    z-index: 2;
}

.bendisa-modal-close:hover {
    color: #ff0000;
}

@keyframes bendisaModalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-open {
    overflow: hidden;
    height: 100%;
}

/* For iOS devices */
@supports (-webkit-overflow-scrolling: touch) {
    .modal-open {
        position: fixed;
    }
}