/* Mobile navigation styles */
@media (max-width: 991.98px) {
    .navbar-brand {
        font-size: 1rem !important;
        line-height: 1.3 !important;
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.3) !important;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    }

    .navbar-collapse {
        background: rgba(30, 58, 138, 0.95);
        margin-top: 0.5rem;
        padding: 1rem;
        border-radius: 0.375rem;
    }

    .navbar-nav {
        gap: 0.5rem !important;
    }

    .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Выравнивание выпадающего меню пользователя справа в мобильной версии */
    .navbar-collapse .d-flex {
        justify-content: flex-end !important;
    }

    .navbar-collapse .dropdown {
        position: relative;
    }

    .navbar-collapse .dropdown-menu {
        right: 0 !important;
        left: auto !important;
        transform: none !important;
        margin-top: 0.5rem;
    }
}

/* Extra small screens */
@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 0.9rem !important;
    }

    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* Mobile optimizations for document pages */
@media (max-width: 768px) {
    .document-container {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1rem !important;
    }

    .document-title {
        font-size: 1.8rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3 !important;
    }

    .document-meta {
        padding: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }

    .document-meta p {
        font-size: 0.9rem !important;
        margin: 0.25rem 0 !important;
    }

    .document-content {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
    }

    .document-content p {
        margin-bottom: 1rem !important;
        text-align: justify !important;
    }

    .document-content h2 {
        font-size: 1.3rem !important;
        margin: 1.5rem 0 0.75rem 0 !important;
    }

    .document-content h3 {
        font-size: 1.1rem !important;
        margin: 1.25rem 0 0.5rem 0 !important;
    }

    .document-content ul,
    .document-content ol {
        padding-left: 1.25rem !important;
        margin-bottom: 1rem !important;
    }

    .document-content li {
        margin-bottom: 0.25rem !important;
    }
}

