/*!
 * Bootstrap v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Copyright 2011-2024 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/* Bootstrap 5 - Version locale pour NotaCount */
/* Import du CDN pour la version complète */

/* Import Bootstrap 5 avec thème similaire à Spacelab */
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");

/* Customisations NotaCount pour Bootstrap 5 */
.navbar-brand {
    background-color: #000001 !important;
    color: white !important;
}

.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid #dee2e6;
    text-align: center;
}

/* Migration des classes Bootstrap 3 vers Bootstrap 5 */
.btn {
    margin: 2px;
}

/* Remplacement des glyphicons par Bootstrap Icons */
.glyphicon-home::before { content: "🏠"; }
.glyphicon-list-alt::before { content: "📋"; }
.glyphicon-folder-open::before { content: "📁"; }
.glyphicon-euro::before { content: "€"; }
.glyphicon-cog::before { content: "⚙️"; }
.glyphicon-file::before { content: "📄"; }
.glyphicon-user::before { content: "👤"; }

/* Styles spécifiques Bootstrap 5 */
.table-responsive {
    overflow-x: auto;
}

/* Responsive fixes pour Bootstrap 5 */
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        padding: 10px 15px;
    }
    
    .navbar-brand {
        padding: 10px 15px;
    }
}

/* Compatibilité avec les classes existantes */
.label {
    @extend .badge;
}

.label-primary {
    @extend .badge-primary;
}

/* Styles pour les tooltips Bootstrap 5 */
[data-bs-toggle="tooltip"] {
    cursor: pointer;
}
