/**
 * Favorites CSS Styles
 * Custom styles for the favorite functionality
 */

/* Favorite button styles */
.favorite-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.25rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.favorite-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.favorite-button.favorited {
    color: #ef4444; /* red-500 */
}

.favorite-button.favorited:hover {
    color: #dc2626; /* red-600 */
    background-color: rgba(255, 0, 0, 0.1);
}

/* Favorites count badge in navigation */
#favorites-count {
    background-color: #ef4444; /* red-500 */
    color: white;
    font-size: 0.75rem;
    min-width: 1.25rem;
    height: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .favorite-button {
        font-size: 1.125rem;
        width: 2.25rem;
        height: 2.25rem;
    }
}