#custom-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    height: auto;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    display: none;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.close-modal {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.center-wrapper {
    display: flex;
    justify-content: center;
}
/* Contenedor del formulario */
.filter-formu {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 25px;
    margin-top: 30px;
    font-family: Arial, sans-serif;
}

/* Contenedor individual de cada campo */
.filter-formu > div {
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

/* Etiquetas */
.filter-formu label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000;
}

/* Selects */
.filter-formu select {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #aaa;
    border-radius: 2px;
    min-width: 200px;
    height: 50px;
    appearance: none;
    background-color: #fff;
    color: #333;
}

/* Botón Buscar */
.filter-submitu {
    background-color: #c21717;
    color: white;
    font-weight: bold;
    padding: 10px 50px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 50px;
    margin-top: 25px;
    transition: background-color 0.3s ease;
}

.filter-submitu:hover {
    background-color: #a81212;
}

#custom-modal {
    width: 100%;
}

