/* ===== Estilos específicos para favoritos com botão de remover ===== */
.favorite-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.favorite-title {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.favorite-count {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-left: 6px;
}

.favorite-item-text {
    flex: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 8px;
}

.favorite-item-muted {
    color: var(--color-text-secondary) !important;
    background: var(--color-surface-subtle) !important;
    box-shadow: none !important;
    justify-content: center !important;
}

.remove-favorite-btn {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.remove-favorite-btn:hover {
    background: #f87171;
    color: white;
    transform: scale(1.1);
}

.remove-favorite-btn svg {
    width: 14px;
    height: 14px;
}