/* Стилі для блоку корисних посилань та кнопки адміна */
.footer-links-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.footer-link-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none !important;
}

.footer-link-item:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

.footer-link-item img {
    height: 40px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block;
}

/* Плюсик додавання для адміна */
.footer-add-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px dashed #888;
    color: #555;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: all 0.2s ease;
}

.footer-add-btn:hover {
    border-color: #337ab7;
    color: #337ab7;
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}