/* 
 * STYLES GLOBAUX - SFC Management
 * Ajustements de la taille de police pour toute l'application
 */

/* ===========================
   RÉGLAGES DE BASE
   =========================== */

/* Réduction générale de la taille de police */
body {
    font-size: 0.875rem !important; /* 14px au lieu de 16px par défaut */
    line-height: 1.5;
}

/* Titres avec tailles réduites */
h1 {
    font-size: 1.75rem !important; /* 28px au lieu de 32px+ */
}

h2 {
    font-size: 1.5rem !important; /* 24px au lieu de 28px+ */
}

h3 {
    font-size: 1.25rem !important; /* 20px au lieu de 24px+ */
}

h4 {
    font-size: 1.125rem !important; /* 18px au lieu de 20px+ */
}

h5 {
    font-size: 1rem !important; /* 16px au lieu de 18px+ */
}

h6 {
    font-size: 0.875rem !important; /* 14px au lieu de 16px+ */
}

/* ===========================
   COMPOSANTS BOOTSTRAP
   =========================== */

/* Boutons plus compacts */
.btn {
    font-size: 0.875rem !important;
    padding: 0.375rem 0.75rem !important;
}

.btn-sm {
    font-size: 0.8125rem !important;
    padding: 0.25rem 0.5rem !important;
}

.btn-lg {
    font-size: 1rem !important;
    padding: 0.5rem 1rem !important;
}

/* Formulaires */
.form-label {
    font-size: 0.875rem !important;
    margin-bottom: 0.375rem !important;
}

.form-control,
.form-select {
    font-size: 0.875rem !important;
    padding: 0.375rem 0.75rem !important;
}

.form-control-sm,
.form-select-sm {
    font-size: 0.8125rem !important;
    padding: 0.25rem 0.5rem !important;
}

.form-text {
    font-size: 0.8125rem !important;
}

/* Tableaux */
.table {
    font-size: 0.875rem !important;
}

.table th,
.table td {
    padding: 0.5rem !important;
}

.table-sm th,
.table-sm td {
    padding: 0.25rem !important;
    font-size: 0.8125rem !important;
}

/* Cartes */
.card {
    font-size: 0.875rem !important;
}

.card-title {
    font-size: 1.125rem !important;
    margin-bottom: 0.5rem !important;
}

.card-subtitle {
    font-size: 0.875rem !important;
}

.card-header,
.card-footer {
    font-size: 0.875rem !important;
    padding: 0.5rem 0.75rem !important;
}

.card-body {
    padding: 1rem !important;
}

/* Badges */
.badge {
    font-size: 0.75rem !important;
    padding: 0.25em 0.5em !important;
}

/* Alertes */
.alert {
    font-size: 0.875rem !important;
    padding: 0.75rem 1rem !important;
}

/* Dropdowns */
.dropdown-menu {
    font-size: 0.875rem !important;
}

.dropdown-item {
    padding: 0.375rem 1rem !important;
}

.dropdown-header {
    font-size: 0.8125rem !important;
}

/* Navigation */
.navbar {
    font-size: 0.875rem !important;
}

.navbar-brand {
    font-size: 1.125rem !important;
}

.nav-link {
    font-size: 0.875rem !important;
}

/* Modals */
.modal-title {
    font-size: 1.25rem !important;
}

.modal-body {
    font-size: 0.875rem !important;
}

.modal-footer {
    padding: 0.75rem !important;
}

/* Pagination */
.pagination {
    font-size: 0.875rem !important;
}

.page-link {
    padding: 0.375rem 0.75rem !important;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.875rem !important;
    padding: 0.5rem 1rem !important;
}

/* ===========================
   ÉLÉMENTS SPÉCIFIQUES
   =========================== */

/* Textes d'aide et descriptions */
small,
.small {
    font-size: 0.8125rem !important;
}

/* Paragraphes */
p {
    font-size: 0.875rem !important;
    margin-bottom: 0.75rem;
}

/* Listes */
ul, ol {
    font-size: 0.875rem !important;
}

li {
    margin-bottom: 0.25rem;
}

/* Labels et spans */
label {
    font-size: 0.875rem !important;
}

/* ===========================
   CLASSES UTILITAIRES
   =========================== */

/* Taille de texte personnalisée */
.text-xs {
    font-size: 0.75rem !important;
}

.text-sm {
    font-size: 0.8125rem !important;
}

.text-base {
    font-size: 0.875rem !important;
}

.text-md {
    font-size: 1rem !important;
}

.text-lg {
    font-size: 1.125rem !important;
}

/* Espacement réduit */
.compact {
    padding: 0.5rem !important;
}

.compact-v {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.compact-h {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

/* ===========================
   RESPONSIVE
   =========================== */

/* Tablettes et plus petit */
@media (max-width: 768px) {
    body {
        font-size: 0.8125rem !important;
    }
    
    h1 {
        font-size: 1.5rem !important;
    }
    
    h2 {
        font-size: 1.25rem !important;
    }
    
    h3 {
        font-size: 1.125rem !important;
    }
}

/* Mobiles */
@media (max-width: 576px) {
    body {
        font-size: 0.75rem !important;
    }
    
    .btn {
        font-size: 0.8125rem !important;
        padding: 0.25rem 0.5rem !important;
    }
    
    .card-body {
        padding: 0.75rem !important;
    }
}

/* ===========================
   AJUSTEMENTS SPÉCIFIQUES APP
   =========================== */

/* Dashboard cards */
.dashboard-card .card-title {
    font-size: 1rem !important;
}

.dashboard-card .card-text {
    font-size: 0.8125rem !important;
}

/* Stats numbers */
.stat-number {
    font-size: 1.75rem !important;
}

.stat-label {
    font-size: 0.8125rem !important;
}

/* Info items */
.info-value {
    font-size: 1rem !important;
}

.info-label {
    font-size: 0.75rem !important;
}

/* Footer */
.footer {
    font-size: 0.8125rem !important;
}

/* ===========================
   EXCEPTIONS (ne pas réduire)
   =========================== */

/* Icônes - garder la taille normale */
.fas, .far, .fab, .fa {
    font-size: inherit !important;
}

/* Code et pre */
code, pre {
    font-size: 0.875em !important;
}

/* SweetAlert (ne pas toucher) */
.swal2-popup {
    font-size: 0.875rem !important;
}

.swal2-title {
    font-size: 1.5rem !important;
}

.swal2-content {
    font-size: 0.875rem !important;
}
