#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.loader-spinner {
    width: 80px;
    height: 80px;
}

/* Étend le body et html à toute la hauteur */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Conteneur principal en colonne */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Contenu principal qui prend tout l'espace restant */
.content {
    flex: 1;
    padding: 20px;
}

/* Style pour le bouton Log In */
.btn-login {
    border-radius: 4px !important;
}

.input-login{
    border-radius: 4px !important;
}

/* Navbar menu items hover effects */
.navbar .nav-link {
    transition: all 0.3s ease;
    font-size: 16px; /* Taille de base du texte */
}

.navbar .nav-link:hover {
    transform: scale(1.05);
    font-size: 18px; /* Agrandissement du texte au hover */
    color: #3562d2 !important;
    background-color: rgba(53, 98, 210, 0.1);
    border-radius: 4px;
}

.navbar .nav-link.active {
    color: #3562d2 !important;
    font-weight: bold;
    background-color: rgba(53, 98, 210, 0.1);
    border-radius: 4px;
}

.navbar .nav-link.active:hover {
    transform: scale(1.05);
    font-size: 18px;
    background-color: rgba(53, 98, 210, 0.2);
}

/* Footer stylisé */
footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 15px;
    color: #333;
}

.hover-card {
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.hover-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    filter: brightness(85%);
}

.panier-btn {
    border-radius: 4px !important;
}

