﻿/* =========================================================
    🌐 Suly Systems - Estilo Maestro Final (Sin Colores Manuales)
   ========================================================= */

/* 1. RESET DE FUENTE Y TAMAÑO EN BOOTSTRAP */
:root, [data-bs-theme=light] {
    --bs-body-font-family: "Segoe UI", Tahoma, sans-serif !important;
    --bs-body-font-size: 13px !important; 
}

/* 2. APLICACIÓN GLOBAL */
* {
    font-family: "Segoe UI", Tahoma, sans-serif !important;
}

body {
    font-size: 13px !important;
    /* Aquí NO hay background-color para que mande tu diseño original */
}

/* 3. FORMULARIOS COMPACTOS (Solo tamaños) */
.form-label {
    font-size: 12px !important;
    font-weight: 600 !important;
}

.form-control, .form-select {
    font-size: 12.5px !important;
}

/* 4. TABLAS DENSAS (Solo tamaños) */
.table th {
    font-size: 11.5px !important;
    text-transform: uppercase;
}

.table td {
    font-size: 12.5px !important;
}


/* 6. ZOOM PARA PANTALLAS GRANDES */
@media screen and (min-width: 1400px) {
    .content {
        zoom: 0.9;
    }
}