:root {
    --azul: rgba(68, 131, 249, 0.371);
    --naranja: rgb(233, 203, 34);
    --gris: #313030;
    --blanco: white;
    --negro: rgba(182, 182, 182, 0.387);
}

/***************************/
/* general */

* {
    padding: 0px;
    margin: 0px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
}

body {
    margin-top: 150px;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x:auto;
    -webkit-overflow-scrolling: touch;
}

h1 {
    font-family: "Montserrat", sans-serif;

}


/***************************/
/* responsive */

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 991.98px) {
    #opcionesMenu {
        display: flex;
        justify-content: end;
    }
}

@media (max-width: 424px) {
    body {
        margin-top: 200px;
        display: flex;
        justify-content: center;
    }

}

@media (min-width: 808px) {

    #seccionRegistro,
    #seccionRegistroDirigente,
    #seccionModificarRegistro,
    #seccionRegistroMilitante {
        margin-left: 30%;
        margin-right: 30%;
    }
}
@media (max-width: 1080px) {

    .bodyLarge {
       margin-left: 500px;
    }
}






/* nav*/
#logoNav {
    width: 60%;
}

.nav-link {
    color: white;
}

/***************************/
/* formularios */
#divFormulario {
    background-color: var(--negro);
    padding: 30px 30px;
    color: var(--blanco);
    width: 100%;
    border-radius: 15px;
    color: black;
}

form input {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    background-color: var(--azul);
    border-radius: 10px;
    padding: 5px;
}

form input::placeholder {
    color: black;
}


form input:hover {
    background-color: white;
}

form input:focus {
    background-color: white;
}

form select {
    border-radius: 10px;
    padding: 5px 30px;
    background-color: var(--azul);
}

form select:focus {
    background-color: white;
}

form div {
    margin: 15px, 0px;
}

/***************************/
/* seccion registro */
#radioIndeciso {
    margin-left: 20px;
}

#btnEliminarUltimo {
    font-size: 15px;
    padding: 10px;
}

form div select {
    margin-top: 20px;
}

/***************************/
/* seccion agregar visita */

#btnAgregarVisita {
    margin-top: 20px;
}

#divFiltro {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    background-color: var(--gris);
    border-radius: 5px;
    padding: 15px;
    color: white;
}

#divFiltro select {
    border-radius: 10px;
    padding: 5px 30px;
    background-color: white;
}

form div button {
    margin-top: 20px;
}

#divFiltro input[type=text] {
    margin-left: 5px;
    margin-right: 5px;
    background-color: white;
    border-radius: 10px;
    padding: 5px;
}

#btnRegModZona {
    margin-top: 0px;
}

#divResReportar {
    width: 200px;
}

form select {
    width: 100%;
}

#btnCancelarReg,
#btnConfirmarReg,
#btnConfirmarEliminar,
#btnCancelarEliminar {
    width: 100%;
}

#toastReg,
#toastReportarEnc,
#toastRegD,
#toastLogin,
#toastReportarDirigente,
#toastRegUsuario,
#toastVerUsuarios,
#toastAgregarZona,
#toastVerZonas,
#toastVerReportes,
#toastVerRegistros,
#toastRegM,
#toastReportarMilitante,
#toastDescargar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#toastReg.show,
#toastReportarEnc.show,
#toastRegD.show,
#toastLogin.show,
#toastReportarDirigente.show,
#toastRegUsuario.show,
#toastVerUsuarios.show,
#toastAgregarZona.show,
#toastVerZonas.show,
#toastVerReportes.show,
#toastVerRegistros.show,
#toastRegM.show,
#toastReportarMilitante.show,
#toastDescargar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

#etiquetaFiltro {
    height: 10%;
    width: max-content;
    color: white;
}

html,
body {
    height: 100%;
    width: 100%;
}

.datatableEstadisticas {
    max-width: 100%; /* Establece un ancho máximo para la tabla */
}

@media (max-width: 576px) { /* Aplica reglas específicas para dispositivos pequeños */
    .datatableEstadisticas th,
    .datatableEstadisticas td {
        white-space: nowrap; /* Evita que el contenido de las celdas se divida en múltiples líneas */
    }
}

body {
    padding-top: 70px; /* Ajusta el padding-top para evitar que el contenido se solape con el navbar */
}

@media (max-width: 576px) {
    body {
        padding-top: 100px; /* Ajusta el padding-top para dispositivos más pequeños */
    }
}

@media (max-width: 767px) {
    /* Agrega reglas CSS específicas para dispositivos móviles */
}

@media (max-width: 991.98px) {
    /* Agrega reglas CSS específicas para dispositivos pequeños */
}

@media (min-width: 808px) {
    /* Agrega reglas CSS específicas para dispositivos medianos */
}
