.custom-modal.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.custom-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.custom-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    max-width: 70%;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

/* .custom-modal.active {
    display: block;
} */

.custom-modal-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.custom-modal-description {
    margin-bottom: 20px;
}

.custom-modal-buttons {
    display: flex;
    flex-direction: row-reverse;
    gap: 24px;
}

.custom-modal-buttons .stay-button,
.custom-modal-buttons .leave-button {
    border: none !important;
    cursor: pointer;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    color: #016d89 !important;
}

.custom-modal-buttons .stay-button:hover, .custom-modal-buttons .leave-button:hover {
    border: none !important;
    cursor: pointer;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    color: #016d89 !important;
}
