#app {
    width: 96%;
    max-width: 500px;
    margin: 40px auto;
    padding: 28px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    background-color: transparent;
    box-shadow: 2px 2px 5px 0px rgba(200, 200, 200, 1);
    font-family: "Times New Roman";
    text-align: center; /* Center content horizontally */
}


.modaal-close {
    position: fixed;
    right: 5px;
    top: 5px;
    color: #fff;
    cursor: pointer;
    opacity: 1;
    width: 50px;
    height: 50px;
    /* background: rgb(0 0 0 / 30%) !important; */
    border-radius: 100%;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.modaal-inner-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
}

.modaal-container {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    margin: auto;
    text-align: left;
    color: #000;
    max-width: 1000px;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
    cursor: auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    #app {
        width: 90%;
        margin: 20px auto;
        padding: 20px;
    }

    .modaal-container {
        max-width: 90%;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    #app {
        width: 100%;
        margin: 10px auto;
        padding: 15px;
    }
    
    .modaal-container {
        max-width: 100%;
        padding: 5px;
    }
}


#app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure full height */
}

.modaal-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.modaal-wrapper {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow: auto;
    opacity: 1;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


@media (max-width: 300px) {
    .modaal-inner-wrapper {
        padding: 5px;
    }
}

