﻿/* ====== Style Global pour tableau de bord PR05 ====== */
body {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.05rem;
    background-color: #007BFF;
    padding-top: 130px; /* correspond à la hauteur estimée de la navbar */
    min-height: 100vh;
    margin: 0;
    color: #333;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
}

/* Logo dans la navbar */
.logo-armoirie {
    height: 35px;
    margin-right: 10px;
}

.navbar {
    min-height: 80px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

    .navbar .navbar-brand {
        padding-top: 12px;
        padding-bottom: 12px;
    }

/* Footer fixe en bas */
.footer-gov {
    background-color: #e9ecef;
    font-size: 0.95rem;
    color: #6c757d;
    text-align: center;
    padding: 15px 0;
    margin-top: auto;
    border-top: 1px solid #dee2e6;
}

/* Cards Bootstrap custom */
.card {
    border-radius: 0.5rem;
}

.card-header {
    background-color: #ffffff;
    font-weight: 600;
}

.card-body {
    background-color: #fff;
}

/* KPI couleurs */
.kpi-title {
    font-size: 0.95rem;
    color: #6c757d;
}

.kpi-value {
    font-size: 1.8rem;
    font-weight: bold;
}

/* Select2 (si utilisé) */
.select2-container .select2-selection--single {
    height: 38px;
    padding: 6px 12px;
    border: 1px solid #ced4da;
}

/* Chart canvas full height */
canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 0.95rem;
    }

    .card-body {
        padding: 1rem;
    }

    .footer-gov {
        font-size: 0.8rem;
    }

    .form-select, .form-control {
        font-size: 0.9rem;
    }

    .kpi-value {
        font-size: 1.4rem;
    }

    .kpi-title {
        font-size: 0.85rem;
    }

    .logo-armoirie {
        height: 40px;
    }
}

