/* Стили для кнопки лайк */
.like-button {
    
        position: absolute;
    bottom: 0;
    right: 0;
    z-index: 99999999;
    background: none;
    border: 0;

    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.like-button:hover {
    background: #de4f8f;
    color: white;
    transform: scale(1.05);
}

.like-button.active {
    background: #de4f8f;
    color: white;

}

/* Стили для страницы избранного */
.favorites-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.favorite-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.favorite-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.favorite-link {
    text-decoration: none;
    color: #333;
    flex: 1;
    font-size: 16px;
}

.favorite-link:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.remove-favorite {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.remove-favorite:hover {
    background: #dc3545;
    color: white;
    transform: scale(1.1);
}

.clear-favorites {
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.clear-favorites:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.empty-favorites {
    text-align: center;
    padding: 40px;
    color: #6c757d;
    font-size: 18px;
}

/* Уведомления */
.favorite-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.favorite-notification.show {
    opacity: 1;
    transform: translateY(0);
}