/* Исправление позиционирования footer в backend */
.small-footer {
    border-top: 1px solid #e0e0e0;
    width: 100% !important;
    left: 0 !important;
    position: relative;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.small-footer-copyrights {
    flex: 1;
    min-width: 0;
    padding-left: 20px;
}

.small-footer .footer-social-links {
    flex-shrink: 0;
    text-align: right;
    margin: 0;
    position: relative;
    top: 0;
}

.small-footer .footer-social-links li {
    color: #333;
    margin: 0 -3px;
}

.small-footer .footer-social-links li a {
    color: #333;
    transition: color 0.3s ease;
}

.small-footer .footer-social-links li a:hover {
    color: #ff6b35;
}

/* Темная тема */
/*
@media (prefers-color-scheme: dark) {
    .small-footer {
        border-top-color: #444;
    }
    
    .small-footer strong {
        color: #e5e7eb;
    }
    
    .small-footer .footer-social-links li,
    .small-footer .footer-social-links li a {
        color: #e5e7eb;
    }
    
    .small-footer .footer-social-links li a:hover {
        color: #ff6b35;
    }
}
*/

/* Мобильная версия - сохраняем оригинальные стили */
@media (max-width: 768px) {
    .small-footer {
        display: block;
        text-align: center;
        padding: 20px 15px;
    }
    
    .small-footer .footer-social-links {
        float: none;
        left: -10px;
        margin-top: 10px;
        text-align: center;
    }
    
    .small-footer-copyrights {
        margin-bottom: 10px;
    }
} 