/* Fuente principal */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

/* Encabezados */
h1, h2, h3, h4, h5 {
    font-weight: 600;
    color: #0d6efd;
}

/* Botones más grandes en móvil */
.btn {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

/* Tablas responsivas */
.table {
    font-size: 0.9rem;
}
.table thead {
    background-color: #0d6efd;
    color: #fff;
}

/* Barra de navegación */
.navbar-brand {
    font-size: 1.2rem;
}

/* Footer */
footer {
    font-size: 0.9rem;
}

/* Para pantallas pequeñas */
@media (max-width: 576px) {
    h3 {
        font-size: 1.25rem;
    }
    .btn {
        width: 100%; /* botones ocupan toda la pantalla */
    }
}

.texto-mayusculas {
    text-transform: uppercase;
}