.overlayPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(0deg, rgba(0,0,0,0.70), rgba(59,100,246,0.70)) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup {
    display: inline-block;
    max-height: 90vh;
    overflow-x: auto;
    width: 90%;
    max-width: 600px;
    box-shadow: 0px 1px 4px #1b1e31;
    border-radius: 3px;
    background-color: #fff;
    padding: 25px;
    z-index: 10000;
}

.popup p {
    font-size: 14px;
    line-height: 1.5;
}

.messageError {
    color: #d70101;
}

.containerBtnPopup {
    font-size: 14px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-top: 15px;
    gap: 20px;
}

.btnLinePopup {
    display: inline-flex;
    justify-content: center;
    padding: 1em 1em;
    color: #2963ff;
    border: solid 1px #2963ff;
    background: #fff;
    border-radius: 0.3em;
}

a.btnLinePopup:active,
a.btnLinePopup:hover,
.btnLinePopup:active,
.btnLinePopup:hover {
    color: #0a0885;
    border-color: #0a0885;
    cursor: pointer;
}

a.btnPopup:active,
a.btnPopup:hover,
.btnPopup:active,
.btnPopup:hover {
    color: #fff;
    background: #0a0885;
    cursor: pointer;
}
.btnPopup {
    display: inline-flex;
    justify-content: center;
    padding: 1em 1em;
    color: #fff;
    background: #2963ff;
    border: none;
    border-radius: 0.3em;
}

.containerBtnPopup > a {
    width: 100%;
}
.d-none { display: none; }

@media screen and (min-width: 600px) {
    .popup {
        padding: 30px;
    }
}

/* Estilo para el dropdown */
.dropdownEstados {
    width: 100%;
    margin: 10px 0;
    padding: 0.5em;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 0.3em;
}