.custom_modal {
    display: none;
    position: fixed;
    top: 26%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--ap-base-white);
    border: 1px solid var(--ap-base-medium-gray);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 400px;
    padding: 20px;
    z-index: 1001;
    text-align: center;
    border-radius: 12px;
}
.custom_modal h2 {
    font-size: 20px;
    margin-bottom: 15px;
}
.modal_body {
    margin: 10px 0;
}
.modal_footer {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}
.custom_modal button {
    background-color: var(--ap-base-blue);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}
.custom_modal button:hover {
    background-color: var(--ap-medium-blue-variation);
}
.custom_modal .cancel_modal {
    background-color: var(--ap-base-strong-gray);
}
.custom_modal .cancel_modal:hover {
    background-color: var(--ap-base-black);
}
button.hiddenAlert {
    display: none;
    visibility: hidden;
}

/** Media query para únicamente móvil */
@media only screen and (max-width: 767px) {

}

/* Media query para tablets */
@media only screen and (min-width: 768px) {
    /* Estilos específicos para tablets */
    .custom_modal {
        top: 22%;
        width: 90%;
    }
}

/* Media query para desktops pequeños */
@media only screen and (min-width: 992px) {
    /* Estilos específicos para desktops pequeños */
    .custom_modal {
        top: 20%;
    }
}

/* Media query para desktops grandes */
@media only screen and (min-width: 1200px) {
    /* Estilos específicos para desktops grandes */

}