.rw-modal-container {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.rw-modal {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.rw-modal.rw-show-modal {
    display: block !important;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width: calc(100% - 40px);
}
.modal-transition {
    transition: all 400ms ease-out 200ms;
}

.slideup-enter-start {
    opacity: 0;
    transform: translateY(15px);
}
.slideup-enter-end {
    opacity: 1;
    transform: translateY(0);
}
.slideup-leave-start {
    opacity: 1;
    transform: translateY(0);
}
.slideup-leave-end {
    opacity: 0;
    transform: translateY(15px);
}

.fade-enter-start {
    opacity: 0;
}
.fade-enter-end {
    opacity: 1;
}
.fade-leave-start {
    opacity: 1;
}
.fade-leave-end {
    opacity: 0;
}


@media (max-width: 768px) {
    .rw-modal {
        width: 100%;
        height: 100vh;
        overflow-y: auto;
    }
}