/**
 * Obľúbené položky - modul/favoriteItem/favorites.css
 */

/* Tlačidlo obľúbených */
.favorite-btn {
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
    cursor: pointer
}

.favorite-btn:hover {
    transform: scale(1.15)
}

.favorite-btn i {
    transition: color 0.2s ease
}

.favorite-btn.favorited i {
    color: #f1c40f !important
}

.favorite-btn[disabled] {
    cursor: not-allowed;
    opacity: .6
}

/* Notifikácie */
.favorite-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    color: white;
    border-radius: 4px;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease
}

.favorite-notification.success {
    background: #28a745
}

.favorite-notification.error {
    background: #dc3545
}

.favorite-notification.info {
    background: #17a2b8
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0
    }
    to {
        transform: translateX(0);
        opacity: 1
    }
}