html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

body {
    padding-bottom: 60px;
    padding-top: 70px;
}

a {
    text-decoration: none;
}

#map {
    height: 500px;
    border-radius: 0.25rem;
    overflow: hidden;
}

.fc-day-today {
    font-weight: bold;
    border: 2px solid red !important;
}

.img-logo-small {
    max-height: 30px;
}

.divider-vertical {
    height: 30px;
}

.logo-movil {
    width: 70%;
    max-width: 250px;
}

.contenedor-principal {
    max-width: 900px;
}

.logo-escritorio {
    width: 80%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 56px; /* altura de navbar en móviles */
    }

    #paginacionTabla {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Hace que el encabezado de la tabla se mantenga fijo mientras haces scroll */
.tabla-rutas-container {
    max-height: 550px;
    overflow-y: auto;
}

.tabla-rutas-container thead th {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 2;
}

.estado-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.parada-provisional-111 {
    background-color: #fde2e1;
}

.parada-provisional-999 {
    background-color: #dbf0db;
}

.oculto {
    display: none;
}

.visible {
    display: block;
}

.bg-alumnos-pago {
    background-color: #fff9db;
}

/* Punto de estado en móvil */
.estado-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
}

/* Estilo del badge */
.pastel-badge {
    width: 120px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.1em 0.75em;
    font-size: 0.75rem;
    border-radius: 999px;
    font-weight: 500;
    display: inline-block;
}

.pastel-badge-inline {
    padding: 0.1em 0.75em;
    font-size: 0.75rem;
    border-radius: 999px;
    font-weight: 500;
    display: inline;
    white-space: nowrap; 
    vertical-align: baseline;
}

/* Fondos pastel */
.pastel-gray {
    background-color: #edf2f7;
}

.pastel-red {
    background-color: rgba(254,215,215,1);
}

.pastel-yellow {
    background-color: rgba(254,252,191,1);
}

.pastel-green {
    background-color: rgba(198,246,213, 1);
}

.pastel-blue {
    background-color: rgba(190,227,248,1);
}

/* Texto oscuro pastel */
.text-gray-text {
    color: #374151;
}

.text-red-text {
    color: rgba(155,44,44,1);
}

.text-yellow-text {
    color: rgba(151,90,22,1);
}

.text-green-text {
    color: rgba(39,103,73,1);
}

.text-blue-text {
    color: rgba(44,82,130,1);
}

/* Fondos punto móvil (más oscuros: bg-300) */
@media (max-width: 576px) {
    .estado-dot.pastel-gray {
        background-color: #cbd5e0;
    }

    .estado-dot.pastel-red {
        background-color: #fc8181;
    }

    .estado-dot.pastel-yellow {
        background-color: #fef08a;
    }

    .estado-dot.pastel-green {
        background-color: #68d391;
    }

    .estado-dot.pastel-blue {
        background-color: #63b3ed;
    }
}