body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nav-link {
    color: #333;
}
.nav-link:hover {
    background-color: #f5f5f5;
}
/* Основен layout – footer долу, дори при малко съдържание */
html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* main заема останалата височина */
main {
    flex: 1 0 auto;
}

/* Navbar с червен фон по логото */
.navbar-bizexpert {
    background: #8b0000; /* тъмно червено */
}

/* Линкове в offcanvas менюто */
.offcanvas .nav-link {
    color: #f8f9fa;
    padding-left: 0;
}

.offcanvas .nav-link.active {
    font-weight: 600;
    text-decoration: underline;
}

/* Footer стил */
.footer-bizexpert {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    flex-shrink: 0;
}

/* Малко разстояние и по-чисти цветове за мобилното меню */
.offcanvas-body {
    padding-top: 0.5rem;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Sidebar стил за десктоп */
.sidebar-bizexpert {
    background: #212529; /* тъмно сиво/черно */
    color: #f8f9fa;
    min-height: calc(100vh - 40px); /* грубо, ще го пипнем при нужда */
}

.sidebar-bizexpert .sidebar-menu .nav-link {
    color: #ced4da;
    padding: 0.4rem 0.75rem;
    border-radius: 0.35rem;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.sidebar-bizexpert .sidebar-menu .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.sidebar-bizexpert .sidebar-menu .nav-link.active {
    background-color: #dc3545; /* червен акцент */
    color: #fff;
}

/* Footer */
.footer-bizexpert {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Offcanvas меню линкове (мобилен) */
.offcanvas .nav-link {
    color: #f8f9fa;
}
.offcanvas .nav-link.active {
    font-weight: 600;
    text-decoration: underline;
}

/* Малко място под мобилния navbar */
@media (max-width: 767.98px) {
    main {
        padding-top: 0.5rem;
    }
}
