:root {
	--mt-dark: #162d46;
	--mt-glpi-bg: #cbd5e0;
	--mt-header-h: 110px;
	--mt-footer-h: 40px;
}

body {
	font-family: 'ABeeZee', sans-serif;
	background-color: rgb(234 237 240);
	padding-top: var(--mt-header-h);
	padding-bottom: var(--mt-footer-h);
	margin: 0;
	overflow-x: hidden;
}

.fd_mic_pr{
background:#092a48;
}

.fd_mic_se{
background-color:#6387ba;
}

@keyframes fadein {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}

.fadein{
	animation: fadein 0.6s;
}


@keyframes fadeout {
    100% {
        opacity:1;
    }
    0% {
        opacity:0;
    }
}

.fadeout{
	animation: fadein 0.6s;
}

.pointer{
	cursor : pointer;
}

.no-gutter  {
    padding-right:0;
    padding-left:0;
}
.no-gutter > [class*='col-'] {
    padding-right:0;
    padding-left:0;
}



        /* --- HEADER & TOPBAR FIXES --- */
        header {
            position: fixed; top: 0; left: 0; right: 0;
            height: var(--mt-header-h); z-index: 1030;
            background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .top-bar {
            background: var(--mt-dark); color: #ffc107;
            font-size: 0.75rem; padding: 5px 0; font-weight: bold;
        }
        .nav-content { height: 75px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; }
        .logo-img { height: 45px; cursor: pointer; }


        footer {
            position: fixed; bottom: 0; left: 0; right: 0;
            height: var(--mt-footer-h); background: var(--mt-dark);
            color: white; display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
        }

.no-border{
	border:none;
}

/* --- Style du Badge Header --- */
.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: default;
    transition: all 0.3s ease;
}

.status-badge.ok {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.status-badge.alert-msg {
    background-color: #dc3545;
    color: white;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.4);
    animation: flash-red 1.5s infinite;
}

@keyframes flash-red {
    0% { opacity: 1; }
    50% { opacity: 0.7; transform: scale(1.02); }
    100% { opacity: 1; }
}

/* --- Style des Badges de Notification --- */
.nav-item-relative {
    position: relative; /* Indispensable pour positionner le badge par rapport à l'icône */
    display: inline-block;
}

.badge-notif {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #dc3545; /* Rouge alerte */
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white; /* Pour le faire ressortir sur le fond */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: pulse-notif 2s infinite;
}

/* Animation discrète pour attirer l'oeil */
@keyframes pulse-notif {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}