/* Общие стили для футера приложения */
:root {
    --sidebar-bg: #212529;
    --footer-border: #343a40;
    --footer-text-color: #FFFFFF;
    --footer-link-color: #E2E8F0;
    --footer-link-hover-color: #FFFFFF;
    --footer-separator-color: #6c757d;
    --footer-copyright-color: #adb5bd;
}

.app-footer {
    background-color: var(--sidebar-bg);
    color: var(--footer-text-color);
    padding: 2rem 0;
    margin-top: 0;
    border-top: 1px solid var(--footer-border);
}

.app-footer .footer-content {
    text-align: center;
}

.app-footer .footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.app-footer .footer-link {
    color: var(--footer-link-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s ease;
}

.app-footer .footer-link:hover {
    color: var(--footer-link-hover-color);
    text-decoration: underline;
}

.app-footer .footer-separator {
    color: var(--footer-separator-color);
    margin: 0 0.5rem;
}

.app-footer .footer-copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--footer-border);
}

.app-footer .footer-copyright p {
    margin: 0;
    color: var(--footer-copyright-color);
    font-size: 0.875rem;
}

/* Адаптивность футера */
@media (max-width: 767.98px) {
    .app-footer {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .app-footer .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .app-footer .footer-separator {
        display: none;
    }

    .app-footer .footer-link {
        font-size: 0.8125rem;
    }

    .app-footer .footer-copyright p {
        font-size: 0.8125rem;
    }
}





