/* --------- GÉNÉRAL --------- */

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.container {
    padding: 2rem;
}

h1, h2, h3 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.btn {
    font-weight: 500;
}


/* --------- NAVBAR --------- */

.navbar {
    background-color: #343a40 !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.3rem;
    color: white !important;
}

.nav-link {
    color: #ccc !important;
}

.nav-link:hover {
    color: white !important;
}


/* --------- FULLCALENDAR EVENTS --------- */

.fc-event.relance {
    background-color: orange !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
}

.fc-event.ultime {
    background-color: crimson !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
}

.fc-list-event:hover {
    background-color: #f1f1f1 !important;
}

.fc-list-event-title {
    color: black !important;
    font-weight: 500;
}


/* --------- RESPONSIVE --------- */

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .btn {
        margin-bottom: 0.5rem;
    }
}


/* --------- IMPRESSION --------- */

@media print {
    body * {
        visibility: hidden !important;
    }

    #print-zone, #print-zone * {
        visibility: visible !important;
    }

    #print-zone {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .no-print {
        display: none !important;
    }

    @page {
        size: A4 portrait;
        margin: 20mm;
    }

    .fc {
        font-size: 12px;
    }
}
