:root {
    /* Colors */
    --primary-color: #4CAF50;
    --primary-hover: #45a049;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #ffffff;
    --background-dark: #f5f5f5;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    --gradient-hover: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Layout Components */
.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Header */
.main-header-bg {
    background: linear-gradient(120deg, #f8fff8 60%, #e8fbe8 100%);
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid #e0f5e0;
    border-radius: 0 0 36px 36px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 28px 0 18px 0;
    transition: box-shadow 0.3s, background 0.3s;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 0 3rem;
}

.logo-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.site-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px rgba(74,112,74,0.10);
}

.site-subtitle {
    font-size: 1.18rem;
    color: var(--primary-color);
    opacity: 0.85;
    font-weight: 500;
}

/* Navigation */
.navbar {
    background: var(--gradient-primary) !important;
    box-shadow: var(--shadow-md) !important;
    border-radius: 24px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border: none !important;
    min-height: 64px !important;
    width: 98%;
    max-width: 1400px;
    position: fixed;
    top: 135px;
    left: 0;
    right: 0;
    z-index: 999;
    transition: transform 0.3s ease-in-out;
    margin-top: 12px;
}

.navbar .container {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-nav {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-light);
    font-size: 1.1em;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link i {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background: linear-gradient(90deg, #f8fff8 60%, #e8fbe8 100%);
    box-shadow: var(--shadow-lg);
    border-top: 2px solid #e0f5e0;
    border-radius: 36px 36px 0 0;
    color: var(--primary-color);
    font-size: 1.08em;
    padding: 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-hover);
}

/* Fixed buttons */
.fixed-buttons {
    position: fixed;
    right: 32px;
    bottom: 32px;
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    z-index: 4000;
    align-items: flex-end;
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.fixed-btn-up {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
}

.fixed-btn-up.show-top-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    margin-right: 0.5rem;
    z-index: 5001;
}

/* Responsive Design */
/* @media (max-width: var(--breakpoint-xl)) {
    .header-flex, .main-nav-list {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
} */

@media (max-width: var(--breakpoint-lg)) {
    .main-header-bg {
        padding: 18px 0 10px 0;
        border-radius: 0 0 20px 20px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .site-subtitle {
        font-size: 1rem;
    }
    
    .main-nav-bar {
        border-radius: 14px;
        margin-bottom: 1.2rem;
        padding: 0.4rem 0;
    }
    
    /* .main-nav-list {
        gap: 0.5rem 1rem;
        font-size: 0.92em;
        padding: 10px 14px;
    } */
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* .main-nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 18px 18px;
        padding: 0.5rem 0.7rem;
        z-index: 5000;
    } */
    
    /* .main-nav-list.open {
        display: flex;
    } */
}

@media (max-width: var(--breakpoint-md)) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
        padding: 0 0.7rem;
    }
    
    .main-header-bg {
        padding: 12px 0 8px 0;
    }
    
    .main-nav-bar {
        border-radius: 10px;
        margin-bottom: 0.7rem;
        padding: 0.2rem 0;
    }
    
    /* .main-nav-list {
        flex-wrap: nowrap;
        gap: 0.3rem 0.7rem;
        padding: 0 0.7rem;
        font-size: 0.9em;
        justify-content: flex-start;
    } */
    
    /* .main-nav-list .nav-link {
        font-size: 0.9em;
        padding: 8px 10px;
    } */
    
    .fixed-buttons {
        right: 10px;
        bottom: 10px;
        gap: 7px;
    }
    
    .fixed-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: var(--breakpoint-sm)) {
    .main-header-bg {
        padding: 7px 0 5px 0;
        border-radius: 0 0 10px 10px;
    }
    
    .site-title {
        font-size: 1.1rem;
    }
    
    .site-subtitle {
        font-size: 0.85rem;
    }
    
    /* .main-nav-list {
        gap: 0.2rem 0.3rem;
        padding: 0 0.3rem;
        font-size: 0.85em;
    }
    
    .main-nav-list .nav-link {
        font-size: 0.85em;
        padding: 6px 7px;
    } */
    
    .fixed-buttons {
        right: 4px;
        bottom: 4px;
        gap: 4px;
    }
    
    .fixed-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

/* Центрирование меню в админ-панели */
.admin-nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto 1.2rem auto;
    padding: 0;
    list-style: none;
}

/* Бургер-меню */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #256029;
    cursor: pointer;
    margin-right: 0.5rem;
    z-index: 5001;
}

.footer-map {
    border:2px solid #e0f5e0;
}
.footer-map-iframe {
    border:0;
    width:100%;
    min-height:120px;
    border-radius:12px;
}
.footer-city {
    color:#256029;
    font-size:1.05em;
    font-weight:600;
}
.footer-address {
    color:#256029;
    font-size:0.98em;
}
.footer-contacts {
    color:#256029;
    font-size:0.98em;
}
.footer-link {
    color:#256029;
    text-decoration:underline;
}
.footer-name {
    font-size:1.13em;
    color:#256029;
}
.footer-worktime {
    color:#256029;
    font-size:0.98em;
}
.footer-socials a {
    font-size:1.3em;
}
.footer-social-wa { color:#25D366; }
.footer-social-tg { color:#229ED9; }
.footer-social-vk { color:#4C75A3; }
.footer-motto {
    color:#256029;
    font-size:0.98em;
    font-weight:500;
}
.footer-sections-title {
    color:#256029;
    font-weight:700;
    font-size:1.08em;
}
.footer-section-link {
    color:#388e3c;
    text-decoration:none;
    transition: color 0.2s;
}
.footer-section-link:hover {
    color:#256029;
    text-decoration:underline;
}
.footer-copyright {
    color:#256029;
}

/* Header text color */
.site-title, .site-subtitle, .header-actions-flex, .user-greeting, .main-nav-list .nav-link {
    color: #388e3c !important;
}

/* User greeting text */
.user-greeting .greeting-text, .user-greeting .user-name {
    color: #388e3c !important;
}

/* Always show dropdowns above all content */
/* .dropdown-content, .dropdown-menu {
    z-index: 5000 !important;
} */

/* Remove or lower z-index from main blocks to avoid overlaying dropdowns */
.greeting-block, .card, .glass-card {
    z-index: 1 !important;
}

@media (max-width: 991.98px) {
    .navbar {
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        min-height: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .navbar .container {
        min-height: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .main-header-bg {
        padding: 8px 0 4px 0 !important;
        border-radius: 0 0 10px 10px;
    }
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    .logo-block {
        gap: 0.1rem;
    }
    .site-title {
        font-size: 1.1rem !important;
        line-height: 1.1;
        word-break: break-word;
    }
    .site-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.1;
    }
    .header-actions-flex {
        flex-direction: row;
        gap: 0.3rem;
        margin-top: 0.2rem;
    }
    .auth-buttons-row .header-btn {
        font-size: 0.95em !important;
        padding: 0.2rem 0.7rem !important;
        margin: 0 0.1rem 0.1rem 0 !important;
        border-radius: 8px !important;
    }
    /* .main-nav-list {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0.7rem 0.7rem 0.7rem;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: var(--gradient-primary);
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 18px 18px;
        z-index: 5000;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.45s cubic-bezier(.4,0,.2,1), opacity 0.35s cubic-bezier(.4,0,.2,1);
    } */
    /* .main-nav-list.open {
        display: flex;
        max-height: 1200px;
        opacity: 1;
        overflow: visible;
    }
    .main-nav-list .nav-link,
    .main-nav-list .dropdown-toggle {
        font-size: 0.97em !important;
        padding: 0.6rem 1rem !important;
        line-height: 1.2;
    } */
    /* .dropdown-content {
        position: static !important;
        width: 100% !important;
        background: none !important;
        box-shadow: none !important;
        border: none !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s, opacity 0.2s;
        padding: 0.1rem 0.2rem 0.1rem 1.2rem !important;
    }
    .dropdown.open > .dropdown-content {
        max-height: 500px;
        opacity: 1;
        overflow: visible;
        transition: max-height 0.3s, opacity 0.2s;
    } */
    .dropdown-item {
        font-size: 0.97em !important;
        padding: 0.5rem 0.7rem !important;
        min-width: 0;
        white-space: normal;
    }
    /* .dropdown.open > .dropdown-content,
    .dropdown.open > .dropdown-content * {
        visibility: visible !important;
        opacity: 1 !important;
    } */
    .mobile-menu-toggle {
        display: block !important;
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 5002;
        background: none;
        border: none;
        padding: 0.2em 0.5em;
        font-size: 2.2em;
        color: #388e3c;
        box-shadow: none;
        transition: color 0.3s;
    }
    .mobile-menu-toggle .bi-list {
        display: inline-block;
        transition: opacity 0.2s, transform 0.3s;
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
    body.menu-open .mobile-menu-toggle .bi-list {
        opacity: 0;
        transform: rotate(90deg) scale(0.7);
    }
    .mobile-menu-toggle .bi-x {
        display: none;
        transition: opacity 0.2s, transform 0.3s;
        opacity: 0;
        transform: rotate(-90deg) scale(0.7);
    }
    body.menu-open .mobile-menu-toggle .bi-x {
        display: inline-block;
        opacity: 1;
        transform: rotate(0deg) scale(1);
        color: #d32f2f;
    }
    .navbar-nav,
    .navbar,
    .container {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
        z-index: 1000 !important;
    }
    /* .dropdown-content {
        max-height: 60vh !important;
        overflow-y: auto !important;
        padding: 0.1rem 0.2rem 0.1rem 0.7rem !important;
    } */
    .dropdown-item {
        font-size: 0.97em !important;
        padding: 0.5rem 0.7rem !important;
        min-width: 0;
        white-space: normal;
    }
    /* .dropdown.open > .dropdown-content,
    .dropdown.open > .dropdown-content * {
        visibility: visible !important;
        opacity: 1 !important;
    } */
}

/* Одинаковый стиль для полосы и выпадающего меню на всех страницах */
/* .navbar, .dropdown-content {
    background: var(--gradient-primary) !important;
    box-shadow: var(--shadow-md) !important;
    border-radius: 18px !important;
} */

/* .dropdown-content {
    background: rgba(255,255,255,0.98) !important;
    color: var(--primary-color) !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid rgba(232,240,232,0.5) !important;
} */

.dropdown-item {
    color: var(--primary-color) !important;
    background: transparent !important;
}

.dropdown-item:hover {
    background: #e8f0e8 !important;
    color: var(--primary-hover) !important;
}

/* Гарантируем белый цвет текста для пунктов меню в навигации */
.navbar .nav-link, .navbar .nav-link:visited {
    color: var(--text-light) !important;
}

/* Мобильное меню: не растягивается вниз */
/* @media (max-width: 991.98px) {
    .main-nav-list {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0.7rem;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: var(--gradient-primary);
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 18px 18px;
        z-index: 5000;
    }
    .main-nav-list.open {
        display: flex;
    }
    .main-nav-list .nav-link {
        color: #fff !important;
        padding: 1rem 1.5rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .main-nav-list .nav-link:last-child {
        border-bottom: none;
    }
    .dropdown-content {
        position: static;
        min-width: 100%;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        margin-top: 0.2rem;
        padding: 0.2rem 0;
        border-radius: 0 0 12px 12px;
    }
    .dropdown-content::before {
        display: none;
    }
    .dropdown-item {
        color: var(--primary-color) !important;
        background: transparent !important;
        padding: 0.8rem 2rem;
        border-radius: 0;
    }
    .dropdown-item:hover {
        background: #e8f0e8 !important;
        color: var(--primary-hover) !important;
    }
} */

/* Гарантированное отображение подменю на мобильных */
/* @media (max-width: 991.98px) {
  .dropdown.open > .dropdown-content {
    display: block !important;
    max-height: 500px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
} */

/* Стили для бокового меню */
.custom-offcanvas {
    background: var(--gradient-primary) !important;
    color: var(--text-light) !important;
    min-width: 270px;
    max-width: 85vw;
    box-shadow: 0 8px 32px 0 rgba(60, 120, 60, 0.18), var(--shadow-lg);
    border-radius: 18px 0 0 18px;
    backdrop-filter: blur(8px);
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
    overflow-y: auto;
}

.custom-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
}

.custom-offcanvas .offcanvas-title {
    color: var(--text-light) !important;
    font-size: 1.25em;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.custom-offcanvas .nav-link {
    color: #256029 !important;
    background: none !important;
    font-size: 1.13em;
    border-radius: 12px;
    margin-bottom: 0.2rem;
    padding: 1rem 1.2rem 1rem 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.custom-offcanvas .nav-link:hover, .custom-offcanvas .nav-link:focus, .custom-offcanvas .nav-link.active {
    background: rgba(76,175,80,0.08) !important;
    color: #256029 !important;
    box-shadow: 0 2px 8px 0 rgba(60,120,60,0.08);
}

.custom-offcanvas .collapse {
    background: none;
    border-radius: 0;
    margin: 0.1rem 0.2rem 0.5rem 0.2rem;
    box-shadow: none;
}
.custom-offcanvas .collapse .nav-link {
    font-size: 1em;
    padding: 0.8rem 1.2rem 0.8rem 2.8em;
    font-weight: 500;
    margin-bottom: 0;
    border-radius: 8px;
    color: #256029 !important;
    background: none !important;
}
.custom-offcanvas .collapse .nav-link:hover {
    background: rgba(76,175,80,0.08) !important;
    color: #256029 !important;
}

.custom-offcanvas .btn-close {
    filter: invert(1);
    opacity: 0.8;
    font-size: 1.5em;
    transition: all 0.3s ease;
}

.custom-offcanvas .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.custom-offcanvas .arrow-icon {
    font-size: 1.3em;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.5em;
    color: #fff;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.custom-offcanvas .nav-link[aria-expanded="true"] .arrow-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.custom-offcanvas .nav-link[aria-expanded="false"] .arrow-icon {
    transform: rotate(0deg);
}

.custom-offcanvas .nav-link i.fas, 
.custom-offcanvas .nav-link i.fab {
    font-size: 1.25em;
    margin-right: 0.7em;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

@media (max-width: 600px) {
    .custom-offcanvas {
        font-size: 0.97em;
        padding-top: 0.2rem;
        padding-bottom: 0.7rem;
    }
    
    .custom-offcanvas .offcanvas-title {
        font-size: 1.05em;
    }
    
    .custom-offcanvas .nav-link {
        font-size: 0.98em;
        padding: 0.7rem 0.9rem;
        border-radius: 8px;
    }
    
    .custom-offcanvas .collapse {
        margin: 0.3rem 0.5rem;
    }
    
    .custom-offcanvas .collapse .nav-link {
        font-size: 0.93em;
        padding: 0.6rem 0.9rem 0.6rem 2.2em;
        border-radius: 6px;
    }
    
    .custom-offcanvas .arrow-icon {
        font-size: 1.1em;
    }
    
    .custom-offcanvas .nav-link i.fas, 
    .custom-offcanvas .nav-link i.fab {
        font-size: 1.1em;
        margin-right: 0.5em;
    }
}

/* Блоки разделов меню в offcanvas */
.custom-offcanvas .nav-section-block {
    background: rgba(255,255,255,0.97);
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(60,120,60,0.10);
    margin-bottom: 1.1rem;
    padding: 0.2rem 0.1rem;
    transition: box-shadow 0.25s, background 0.25s;
}
.custom-offcanvas .nav-section-block:hover {
    box-shadow: 0 4px 18px 0 rgba(60,120,60,0.16);
    background: #fff;
}

.custom-offcanvas .nav-link {
    color: #256029 !important;
    background: none !important;
    font-size: 1.13em;
    border-radius: 12px;
    margin-bottom: 0.2rem;
    padding: 1rem 1.2rem 1rem 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}
.custom-offcanvas .nav-link:hover, .custom-offcanvas .nav-link:focus, .custom-offcanvas .nav-link.active {
    background: rgba(76,175,80,0.08) !important;
    color: #256029 !important;
    box-shadow: 0 2px 8px 0 rgba(60,120,60,0.08);
}

.custom-offcanvas .collapse {
    background: none;
    border-radius: 0;
    margin: 0.1rem 0.2rem 0.5rem 0.2rem;
    box-shadow: none;
}
.custom-offcanvas .collapse .nav-link {
    font-size: 1em;
    padding: 0.8rem 1.2rem 0.8rem 2.8em;
    font-weight: 500;
    margin-bottom: 0;
    border-radius: 8px;
    color: #256029 !important;
    background: none !important;
}
.custom-offcanvas .collapse .nav-link:hover {
    background: rgba(76,175,80,0.08) !important;
    color: #256029 !important;
}

@media (max-width: 600px) {
  .custom-offcanvas .nav-section-block {
    border-radius: 10px;
    margin-bottom: 0.7rem;
    padding: 0.1rem 0.1rem;
  }
  .custom-offcanvas .nav-link {
    font-size: 0.98em;
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
  }
  .custom-offcanvas .collapse .nav-link {
    font-size: 0.93em;
    padding: 0.6rem 0.9rem 0.6rem 2.2em;
    border-radius: 6px;
  }
}

/* Add padding to body to account for fixed header and navbar */
body {
    padding-top: 215px;
}

/* Show navbar by default */
.navbar {
    transform: translateY(0);
}

/* Hide navbar when scrolling down */
.navbar.hide {
    transform: translateY(-100%);
}

/* Show navbar when scrolling up */
.navbar.show {
    transform: translateY(0);
}

.btn, .btn-primary, .btn-register, .btn-outline-primary, .btn-secondary, .page-btn {
    border: none !important;
    outline: none !important;
}

.btn:focus, .btn-primary:focus, .btn-register:focus, .btn-outline-primary:focus, .btn-secondary:focus, .page-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

a, .nav-link, .dropdown-item {
    text-decoration: none !important;
}

a:hover, .nav-link:hover, .dropdown-item:hover {
    text-decoration: none !important;
}

html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.admin-content-block {
    flex: 1 0 auto;
}
.site-footer {
    flex-shrink: 0;
} 