/* _content/Techtinkr/Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
.custom-navbar[b-80f1u2d0bf] {
    overflow: hidden;
    position: fixed; /* Positionnement fixe en haut de la page */
    width: 100%; /* Largeur de la barre de navigation */
    top: 0; /* Position fixe au sommet */
    z-index: 1000; /* Assurez-vous que la barre de navigation est au premier plan */
}

a.navbar-brand[b-80f1u2d0bf] {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a[b-80f1u2d0bf] {
    color: #0077CC;
}

.btn-primary[b-80f1u2d0bf] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-80f1u2d0bf], .nav-pills .show > .nav-link[b-80f1u2d0bf] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-80f1u2d0bf] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-80f1u2d0bf] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-80f1u2d0bf] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-80f1u2d0bf] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-80f1u2d0bf] {
  position:  absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
}

.nav-item[b-80f1u2d0bf] {
    position: relative;
}

    .nav-item[b-80f1u2d0bf]::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: black; /* Couleur de la barre */
        transition: width 0.3s ease; /* Animation */
    }

    .nav-item:hover[b-80f1u2d0bf]::after,
    .nav-item.active[b-80f1u2d0bf]::after {
        width: 100%; /* Longueur de la barre */
    }
