/* Navbar Loading Bar Styles */
.navbar-loading {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-color),rgb(11, 214, 201));
    z-index: 1001;
    transition: width 0.3s ease-out;
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.5);
}