.modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    height: 90%;
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 25px;
    color: #aaa;
    cursor: pointer;
}

.modal-close:hover {
    color: #000;
}

.modal-footer {
    margin-top: auto; /* Empuja el botón hacia la parte inferior del modal */
    display: flex;
    justify-content: center; /* Centrar el botón horizontalmente */
    padding: 15px 0;
}

/* Botón azul para cerrar */
.btn-close-modal {
    background-color: #184eff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Ocupa todo el ancho disponible */
    max-width: 500px; /* Máximo ancho */
    min-width: 150px; /* Mínimo ancho */
    text-align: center; /* Asegurar el texto centrado */
    transition: background-color 0.3s;
}

.btn-close-modal:hover {
    background-color: #153dcc;
}
